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
backon is great for retrying a single async function, but it's a bit clumsy to retry 100 functions. Perhaps we could provide a macro so users can add #[backon] to their own async functions instead of repeatedly calling retry.
Implementing macro is quite heavy; I expect it to reside in a separate crate.
The text was updated successfully, but these errors were encountered:
backon
is great for retrying a single async function, but it's a bit clumsy to retry 100 functions. Perhaps we could provide a macro so users can add#[backon]
to their own async functions instead of repeatedly callingretry
.Implementing
macro
is quite heavy; I expect it to reside in a separate crate.The text was updated successfully, but these errors were encountered: