bluebird-retry
bluebird-retry copied to clipboard
utility for retrying a bluebird promise until it succeeds
We are calling a service that requires a slightly different Authorization token on each retry request ( HMAC token ). I'd like to use the args option to call a...
For various use cases, you may want to run code after a failed attempt and before the next try. For example: * Want to log errors/warnings whenever a retry is...
Does it working with Bluebird 3?
Hi and thanks for your work That would be great if a custom filter could be implemeted to perform the retry or not A gentle way to replace something like...
If you produce a RangeError, ReferenceError, SyntaxError, TypeError or URIError in the retry-func without the "predicate"-option, it will timeout, because of the default "catch-all-implementation". Perhaps you should document this feature...
Hi, I am adding an `on_retry` callback function to be invoked when a retry happens. This is my first PR on GitHub ever, and would love to get feedback and...
It doesn't seem right that a retry loop can only be interrupted (or interacted with) form inside the callback. There are many scenarios when it needs to happen externally. Function...