Skip to content

Commit

Permalink
Bugfix pass the correct quic connection to the H3 Protocol
Browse files Browse the repository at this point in the history
This was a mistake in the recent QUIC work.

Odd that mypy didn't pick this up.
  • Loading branch information
pgjones committed May 27, 2024
1 parent 494268a commit c03a75f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hypercorn/protocol/quic.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ async def _handle_events(
self.state,
client,
self.server,
connection,
connection.quic,
partial(self.send_all, connection),
)
elif isinstance(event, ConnectionIdIssued):
Expand Down

0 comments on commit c03a75f

Please sign in to comment.