Skip to content

Commit

Permalink
remove unused attribute max_inbound_frame_size
Browse files Browse the repository at this point in the history
`H2Stream` does not have such an attribute - probably added by accident.
  • Loading branch information
Kriechi committed Nov 23, 2024
1 parent eaa1489 commit 25f4b75
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/h2/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 25f4b75

Please sign in to comment.