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
Since _api_check is in a private name space and isn't used except by unit tests + sys admins, I rather it just fail fast then keep trying. For example, I've got a deployment where I've got something misconfigured with S3, so when I call _api_check() I have to wait for the retry logic to run its course.
Other ideas:
allow _retry to accept kwargs/options so we could make the retry happen with a faster time out, but still try a few times before we just report the error code to the user
allow _api_check to take in an argument that disables retry logic
The text was updated successfully, but these errors were encountered:
Since
_api_check
is in a private name space and isn't used except by unit tests + sys admins, I rather it just fail fast then keep trying. For example, I've got a deployment where I've got something misconfigured with S3, so when I call_api_check()
I have to wait for the retry logic to run its course.Other ideas:
_retry
to accept kwargs/options so we could make the retry happen with a faster time out, but still try a few times before we just report the error code to the user_api_check
to take in an argument that disablesretry
logicThe text was updated successfully, but these errors were encountered: