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
We've seen a few occasions where coldsnap uploads have blocked forever in a rusoto call. We should add timeouts so the calls can fail, letting the error handling code either retry or inform the user.
tokio::time::timeout can wrap any future with a maximum duration; we can use it to wrap our rusoto calls.
The text was updated successfully, but these errors were encountered:
We've seen a few occasions where coldsnap uploads have blocked forever in a rusoto call. We should add timeouts so the calls can fail, letting the error handling code either retry or inform the user.
tokio::time::timeout can wrap any future with a maximum duration; we can use it to wrap our rusoto calls.
The text was updated successfully, but these errors were encountered: