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
I noticed that the tool keeps uploading following parts even if a previous (necessary) part has failed while being uploaded.
Retry mechanism is provided by botocore, if botocore is not able to complete the upload operation before max_attempts threshold is reached, the operate call will raise a ConnectionError exception.
Current UploadTask logic handles this case properly so whenever it gets an Exception, the failed task sets the shared MultipartUploadContext state to _CANCELLED.
Unfortunately queued UploadTasks doesn't seem to honor the MultipartUploadContext state and keeps trying to upload more parts, these uploadTask are useless as the uploaded file won't be complete.
The text was updated successfully, but these errors were encountered:
* release-1.3.22:
Bumping version to 1.3.22
Update CHANGELOG with the latest features
Update completer test with new services
Update changelog with #825
Add changelog entry for #834
Fix changelog entry for merge of #831
Added test_cancel_after_upload_id to test_tasks
Update changelog with fix for #549
Disable fix_s3_host when --endpoint-url is given
Fixes issue #834
Update changelog with bugfix
Add validation to ensure we don't mv a file onto itself
Let aws.cmd find python.exe on paths with spaces.
I noticed that the tool keeps uploading following parts even if a previous (necessary) part has failed while being uploaded.
Retry mechanism is provided by botocore, if botocore is not able to complete the upload operation before max_attempts threshold is reached, the operate call will raise a ConnectionError exception.
Current UploadTask logic handles this case properly so whenever it gets an Exception, the failed task sets the shared MultipartUploadContext state to _CANCELLED.
Unfortunately queued UploadTasks doesn't seem to honor the MultipartUploadContext state and keeps trying to upload more parts, these uploadTask are useless as the uploaded file won't be complete.
The text was updated successfully, but these errors were encountered: