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
Hello,
My feature request is that it would be better for the retryBackoff operator's shouldRetry option to also accept async functions (Promise).
Let's say that I am calling an API within my operators but every once in a while I get a token error, which is caught within the retryBackoff, visible within the shouldRetry option. I can use this opportunity to obtain a new token and then retry the call. However, I can't since shouldRetry does not accept an async function.