fix: allow accept stream to wait indefinitely

This commit is contained in:
Akash Mondal
2025-08-15 15:25:33 +00:00
committed by lla-dane
parent 760f94bd81
commit 933741b190
4 changed files with 50 additions and 55 deletions

View File

@ -625,7 +625,7 @@ class QUICStream(IMuxedStream):
exc_tb: TracebackType | None,
) -> None:
"""Exit the async context manager and close the stream."""
print("Exiting the context and closing the stream")
logger.debug("Exiting the context and closing the stream")
await self.close()
def set_deadline(self, ttl: int) -> bool: