We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug If uploading a part with a size greater than 5 GiB, the UploadPart operation should fail.
5 GiB
UploadPart
To Reproduce
aws s3api create-bucket --bucket test aws s3api create-multipart-upload --bucket test --key obj // file_1 should be greater than 5Gib aws s3api upload-part --bucket test --key obj --upload-id <mp_upload_id> --part-number 1 --body file_1
Expected behavior UploadPart should return the following error:
An error occurred (EntityTooLarge) when calling the UploadPart operation: Your proposed upload exceeds the maximum allowed size
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
If uploading a part with a size greater than
5 GiB
, theUploadPart
operation should fail.To Reproduce
Expected behavior
UploadPart
should return the following error:The text was updated successfully, but these errors were encountered: