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 TransferCoordinator.cancel() is called it checks to see if it needs to call the announce_done() method. The only case it will call announce_done() is when the state is "not-done". If cancel() is called when the state is "queued" or "running" then announce_done() is not called. This causes the _done_event never to be set. Calling result() will block forever waiting for _done_event to be set.
The text was updated successfully, but these errors were encountered:
s3transfer 0.6.0
When
TransferCoordinator.cancel()
is called it checks to see if it needs to call theannounce_done()
method. The only case it will callannounce_done()
is when the state is "not-done". Ifcancel()
is called when the state is "queued" or "running" thenannounce_done()
is not called. This causes the_done_event
never to be set. Callingresult()
will block forever waiting for_done_event
to be set.The text was updated successfully, but these errors were encountered: