We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eb5bb6 commit 2a3f6c4Copy full SHA for 2a3f6c4
tests/isolated/check_for_client_response_leak.py
@@ -33,7 +33,9 @@ async def fetch_stream(url: str) -> None:
33
with contextlib.suppress(ClientError):
34
await session.get(url)
35
36
- client_task = asyncio.create_task(fetch_stream(f"http://localhost:{port}/stream"))
+ client_task = asyncio.create_task(
37
+ fetch_stream(f"http://localhost:{port}/stream")
38
+ )
39
await client_task
40
gc.collect()
41
client_response_present = any(
0 commit comments