You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
Minor issue, but when submitting a part in a multipart upload the error is not very descriptive when using 0 as PartNumber. It took me a while to figure out that I was indexing with 0 instead of 1 PartNumber.
To Reproduce
Create a multipart upload
Submit a part with PartNumber 0
Result
This will succeed. It should give an error saying you can't upload a part with a PartNumber of 0.
Sample response from S3
Here's the response I get from S3.
<?xml version="1.0" encoding="UTF-8"?>
<Error>
<Code>InvalidArgument</Code>
<Message>Part number must be an integer between 1 and 10000, inclusive</Message>
<ArgumentName>partNumber</ArgumentName>
<ArgumentValue>0</ArgumentValue>
<RequestId>[RequestIdHere]</RequestId>
<HostId>[HostIdHere]</HostId>
</Error>
The text was updated successfully, but these errors were encountered:
mrgcohen
changed the title
[Feature] Multipart upload more description error message for uploading one part
[Feature] Multipart upload more descriptive error message for uploading one part
Aug 10, 2018
"Part numbers can be any number from 1 to 10,000, inclusive. A part number uniquely identifies a part and also defines its position within the object being created. If you upload a new part using the same part number that was used with a previous part, the previously uploaded part is overwritten. Each part must be at least 5 MB in size, except the last part. There is no size limit on the last part of your multipart upload."
Love this library... great work!
Minor issue, but when submitting a part in a multipart upload the error is not very descriptive when using 0 as PartNumber. It took me a while to figure out that I was indexing with 0 instead of 1 PartNumber.
To Reproduce
Result
This will succeed. It should give an error saying you can't upload a part with a PartNumber of 0.
Sample response from S3
Here's the response I get from S3.
The text was updated successfully, but these errors were encountered: