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
I find myself doing this a lot when using async-retry:
awaitPromise.race(retry(/* ... */),newPromise((_,reject)=>{setTimeout(()=>{reject(newError('FAILED to complete async retry in less than 1 minute'))},60000)}),)
It would be awesome if there were a clean way to provide an option (retryTimeout?) that allowed you to say ("time out after the retry went for this long, regardless of the attempt number").
The text was updated successfully, but these errors were encountered:
I find myself doing this a lot when using async-retry:
It would be awesome if there were a clean way to provide an option (
retryTimeout
?) that allowed you to say ("time out after the retry went for this long, regardless of the attempt number").The text was updated successfully, but these errors were encountered: