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
Multipart uploads stop before completing after the restart and recovery process.
To Reproduce
Steps to reproduce the behavior:
Launch the app
Start a fairly large multipart upload
Kill the app just as parts are uploading
Restart the app
Observe that parts stop uploading and the process does not complete
Observed Behavior
For my dev app the MU process after a restart the progress bar would stop at 50% and stall there.
Expected Behavior
The process should complete with each upload part completing followed by the MU complete request.
** Root Cause **
When the recovery process hydrate the multipart upload task the inProgressDictionary is populated with tasks which are suspended. It puts the number of in progress tasks over the limit and it prevents the process from resuming these sub tasks because they are not in the waiting dictionary.
The text was updated successfully, but these errors were encountered:
Describe the bug
Multipart uploads stop before completing after the restart and recovery process.
To Reproduce
Steps to reproduce the behavior:
Observed Behavior
For my dev app the MU process after a restart the progress bar would stop at 50% and stall there.
Expected Behavior
The process should complete with each upload part completing followed by the MU complete request.
** Root Cause **
When the recovery process hydrate the multipart upload task the
inProgressDictionary
is populated with tasks which are suspended. It puts the number of in progress tasks over the limit and it prevents the process from resuming these sub tasks because they are not in the waiting dictionary.The text was updated successfully, but these errors were encountered: