mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-02 18:51:31 +08:00
fix: update HTTP/2 settings version to 25.0.0
HTTP/2 is being released in 25.0.0, not 24.0.0
This commit is contained in:
parent
df5d7ad6d2
commit
a3185d9384
@ -2479,7 +2479,7 @@ class HTTPProtocols(Setting):
|
|||||||
HTTP/2 cleartext (h2c) is not supported due to security concerns
|
HTTP/2 cleartext (h2c) is not supported due to security concerns
|
||||||
and lack of browser support.
|
and lack of browser support.
|
||||||
|
|
||||||
.. versionadded:: 24.0.0
|
.. versionadded:: 25.0.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
@ -2501,7 +2501,7 @@ class HTTP2MaxConcurrentStreams(Setting):
|
|||||||
Default is 100, which matches common server configurations.
|
Default is 100, which matches common server configurations.
|
||||||
The HTTP/2 specification allows up to 2^31-1.
|
The HTTP/2 specification allows up to 2^31-1.
|
||||||
|
|
||||||
.. versionadded:: 24.0.0
|
.. versionadded:: 25.0.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
@ -2523,7 +2523,7 @@ class HTTP2InitialWindowSize(Setting):
|
|||||||
Default is 65535 (64KB - 1), the HTTP/2 specification default.
|
Default is 65535 (64KB - 1), the HTTP/2 specification default.
|
||||||
Maximum is 2^31-1 (2147483647).
|
Maximum is 2^31-1 (2147483647).
|
||||||
|
|
||||||
.. versionadded:: 24.0.0
|
.. versionadded:: 25.0.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
@ -2545,7 +2545,7 @@ class HTTP2MaxFrameSize(Setting):
|
|||||||
Default is 16384 (16KB), the HTTP/2 specification minimum.
|
Default is 16384 (16KB), the HTTP/2 specification minimum.
|
||||||
Range is 16384 to 16777215 (16MB - 1).
|
Range is 16384 to 16777215 (16MB - 1).
|
||||||
|
|
||||||
.. versionadded:: 24.0.0
|
.. versionadded:: 25.0.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
@ -2565,7 +2565,7 @@ class HTTP2MaxHeaderListSize(Setting):
|
|||||||
|
|
||||||
Default is 65536 (64KB). Set to 0 for unlimited (not recommended).
|
Default is 65536 (64KB). Set to 0 for unlimited (not recommended).
|
||||||
|
|
||||||
.. versionadded:: 24.0.0
|
.. versionadded:: 25.0.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user