-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove resuming multipart uploads (#267)
ListParts is never fully complete in its output, there is always a possibility that the List is partial where another PutObjectPart() is being uploaded in parallel. While it may seem like ListParts and ListMultipartUploads provide the possibility of resuming an upload, it would be a mistake as these APIs were inherently never meant do these things. This is one of the reasons why Amazon recommends that one should avoid using these API calls to complete or add parts to an upload - they instead recommend to remember the parts being uploaded at the client.
- Loading branch information
1 parent
794aa9a
commit 3e89239
Showing
4 changed files
with
52 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.