Skip to content

Commit c03a75f

Browse files
committed
Bugfix pass the correct quic connection to the H3 Protocol
This was a mistake in the recent QUIC work. Odd that mypy didn't pick this up.
1 parent 494268a commit c03a75f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hypercorn/protocol/quic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ async def _handle_events(
133133
self.state,
134134
client,
135135
self.server,
136-
connection,
136+
connection.quic,
137137
partial(self.send_all, connection),
138138
)
139139
elif isinstance(event, ConnectionIdIssued):

0 commit comments

Comments
 (0)