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 a03f921 commit c47bd6fCopy full SHA for c47bd6f
src/clusterfuzz/_internal/system/fast_http.py
@@ -101,5 +101,5 @@ async def _async_download_file(session: aiohttp.ClientSession, url: str,
101
status=response.status,
102
)
103
with open(path, 'wb') as fp:
104
- async for chunk in response.content.iter_any(1024):
+ async for chunk in response.content.iter_any():
105
fp.write(chunk)
0 commit comments