Fix borkened storage call
This commit is contained in:
parent
be046c480c
commit
41cffe33f0
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ class _CloudStorage(BaseStorageV2):
|
||||||
logger.exception(msg, chunk.path, final_path)
|
logger.exception(msg, chunk.path, final_path)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _complete_s3_multipart_upload(self, mpu, path):
|
def _complete_s3_multipart_upload(mpu, path):
|
||||||
# Note: Sometimes Amazon S3 simply raises an internal error when trying to complete a
|
# Note: Sometimes Amazon S3 simply raises an internal error when trying to complete a
|
||||||
# multipart upload. The recommendation is to simply try calling complete_upload again.
|
# multipart upload. The recommendation is to simply try calling complete_upload again.
|
||||||
for remaining_retries in range(3, -1, -1):
|
for remaining_retries in range(3, -1, -1):
|
||||||
|
|
Reference in a new issue