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
When uploading a readable stream (deferred length), when the overall upload is smaller than the minPartSize, then the upload remains as an incomplete part, never establishing an actual part for the S3 multipart upload to complete.
Reproducible Steps
Upload via readable stream with deferred lengths
Upload a very small set of chunks that are collectively smaller than the minPartSize
When uploading a readable stream (deferred length), when the overall upload is smaller than the minPartSize, then the upload remains as an
incomplete part
, never establishing an actualpart
for the S3 multipart upload to complete.Reproducible Steps
Expected behavior
The file upload completes
Actual behavior
500
- finishMultipartUpload fails because there are no completedparts
resolved from client.listParts.As a result, S3 contains no
Parts
in its response field, resulting in anundefined
error when finishMultipartUpload attemptsparts.map
Fix - #502
The text was updated successfully, but these errors were encountered: