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 068be51 commit bc3419dCopy full SHA for bc3419d
core/cluster.py
@@ -359,6 +359,7 @@ async def download(self, filelist: set[File]):
359
config.const.base_url,
360
headers={
361
"User-Agent": USER_AGENT,
362
+ "Authorization": f"Bearer {await clusters.clusters[0].get_token()}"
363
}
364
)
365
sessions.append(session)
@@ -462,6 +463,7 @@ async def _r(urls: tuple[URLResponse, ...]):
462
463
464
465
466
467
468
) as session:
469
await asyncio.gather(*[_r(urls) for urls in urls])
0 commit comments