Skip to content

Commit c47bd6f

Browse files
Fix async downloading (#4390)
1 parent a03f921 commit c47bd6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/system/fast_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,5 @@ async def _async_download_file(session: aiohttp.ClientSession, url: str,
101101
status=response.status,
102102
)
103103
with open(path, 'wb') as fp:
104-
async for chunk in response.content.iter_any(1024):
104+
async for chunk in response.content.iter_any():
105105
fp.write(chunk)

0 commit comments

Comments
 (0)