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
Turning off retries (not counting redirects) allows a project to have their own failure and retry handling, such as:
Logging errors in custom ways
Having custom back-off timer logic
Tweaking the number of retries depending on the type of the error
Possible ways to turn off retries:
Add an optional number-of-retries parameter to each function
Add a number-of-retries option as an application configuration parameter ⭐
As indicated, I'm leaning towards the 2nd option, since it doesn't clutter the API as much as the 1st option, but there might be other aspects that I haven't thought of.
The text was updated successfully, but these errors were encountered:
Turning off retries (not counting redirects) allows a project to have their own failure and retry handling, such as:
Possible ways to turn off retries:
As indicated, I'm leaning towards the 2nd option, since it doesn't clutter the API as much as the 1st option, but there might be other aspects that I haven't thought of.
The text was updated successfully, but these errors were encountered: