Fix borkened storage call

This commit is contained in:
Joseph Schorr 2016-09-02 14:29:53 -04:00
parent be046c480c
commit 41cffe33f0

View file

@ -348,7 +348,7 @@ class _CloudStorage(BaseStorageV2):
logger.exception(msg, chunk.path, final_path)
@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
# multipart upload. The recommendation is to simply try calling complete_upload again.
for remaining_retries in range(3, -1, -1):