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
Currently in avalancheup-aws apply and in various other commands there are places were retries need to be done (for polling the AWS APIs for example). Instead of implementing retries on a one-off basis we could try to use the backoff crate to provide a unified approach to randomly retrying actions. This crate also provides terminal versus transient errors which are useful primitives to build with as well.
The text was updated successfully, but these errors were encountered:
Currently in
avalancheup-aws apply
and in various other commands there are places were retries need to be done (for polling the AWS APIs for example). Instead of implementing retries on a one-off basis we could try to use the backoff crate to provide a unified approach to randomly retrying actions. This crate also provides terminal versus transient errors which are useful primitives to build with as well.The text was updated successfully, but these errors were encountered: