This repository was archived by the owner on Jan 13, 2021. It is now read-only.
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ def _connect_upgrade(self, sock):
403
403
with self ._conn as conn :
404
404
conn .initiate_upgrade_connection ()
405
405
conn .update_settings (
406
- {h2 .settings .ENABLE_PUSH : int (self ._enable_push )}
406
+ {h2 .settings .SettingCodes . ENABLE_PUSH : int (self ._enable_push )}
407
407
)
408
408
self ._send_outstanding_data ()
409
409
@@ -424,7 +424,7 @@ def _send_preamble(self):
424
424
with self ._conn as conn :
425
425
conn .initiate_connection ()
426
426
conn .update_settings (
427
- {h2 .settings .ENABLE_PUSH : int (self ._enable_push )}
427
+ {h2 .settings .SettingCodes . ENABLE_PUSH : int (self ._enable_push )}
428
428
)
429
429
self ._send_outstanding_data ()
430
430
Original file line number Diff line number Diff line change @@ -766,7 +766,8 @@ def test_incrementing_window_after_close(self):
766
766
# the default max frame size (16,384 bytes). That will, on the third
767
767
# frame, trigger the processing to increment the flow control window,
768
768
# which should then not happen.
769
- f = SettingsFrame (0 , settings = {h2 .settings .INITIAL_WINDOW_SIZE : 100 })
769
+ f = SettingsFrame (0 , settings = {
770
+ h2 .settings .SettingCodes .INITIAL_WINDOW_SIZE : 100 })
770
771
771
772
c = HTTP20Connection ('www.google.com' )
772
773
c ._sock = DummySocket ()
You can’t perform that action at this time.
0 commit comments