Merge pull request #1802 from coreos-inc/fix-storage

Fix barkened storage call
This commit is contained in:
josephschorr 2016-09-02 14:31:04 -04:00 committed by GitHub
commit 0a7949fc10

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):