From 25f4b75f62c6c636ecdf9182cd907c6cd67643cc Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sun, 17 Nov 2024 11:02:44 +0100 Subject: [PATCH] remove unused attribute `max_inbound_frame_size` `H2Stream` does not have such an attribute - probably added by accident. --- src/h2/connection.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/h2/connection.py b/src/h2/connection.py index 25251e20a..ca2b38329 100644 --- a/src/h2/connection.py +++ b/src/h2/connection.py @@ -470,7 +470,6 @@ def _begin_new_stream(self, stream_id, allowed_ids): outbound_window_size=self.remote_settings.initial_window_size ) self.config.logger.debug("Stream ID %d created", stream_id) - s.max_inbound_frame_size = self.max_inbound_frame_size s.max_outbound_frame_size = self.max_outbound_frame_size self.streams[stream_id] = s