Skip to content
Advertisement

AWS S3 Multi-Part Unable to resume

I am implementing AWS S3 multipart using python boto3.

I am unable to resume the pending uploads.

JavaScript

How to get the pending parts to resume.

print(response[‘Parts’]) KeyError: ‘Parts’

Advertisement

Answer

I think after create_multipart_upload, you have to start upload using: https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement