Fix s3_download_task args order

This commit is contained in:
Cody Wyatt Neiman 2022-10-24 21:53:28 -04:00
parent c118826d14
commit 1e2cec3e56
No known key found for this signature in database
GPG key ID: 94475C8B94E4698D

View file

@ -138,7 +138,7 @@ class S3StorageProviderBackend(StorageProvider):
def _get_file(): def _get_file():
s3_download_task( s3_download_task(
self._get_s3_client(), self.bucket, self.eargs, path, d, logcontext self._get_s3_client(), self.bucket, path, self.eargs, d, logcontext
) )
self._s3_pool.callInThread(_get_file) self._s3_pool.callInThread(_get_file)