Skip to content

Commit 557fcf2

Browse files
committed
Reduce to 2**16
1 parent 8ca6d08 commit 557fcf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

h2/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ class H2Connection(object):
282282
DEFAULT_MAX_HEADER_LIST_SIZE = 2**16
283283

284284
# Keep in memory limited amount of results for streams closes
285-
MAX_CLOSED_STREAMS = 2**31
285+
MAX_CLOSED_STREAMS = 2**16
286286

287287
def __init__(self, config=None):
288288
self.state_machine = H2ConnectionStateMachine()

0 commit comments

Comments
 (0)