Closed
Description
I am using the following code to update the MAX_FRAME_SIZE setting:
conn = H2Connection(config)
conn.local_settings.max_frame_size = 2**18
conn.local_settings.acknowledge()
but this causes a FRAME_SIZE_ERROR, so I also need to append:
conn.max_inbound_frame_size = 2**18
Shouldn't max_inbound_frame_size
be implemented with a setter/getter instead of just copying from Settings
at __init__
?
Metadata
Metadata
Assignees
Labels
No labels