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
With retry_on_failure enabled, the client now retries every transient failure, not only connection errors: dropped or timed-out connections, HTTP 500/502/503/504 responses, and GraphQL errors the server flags with one of those statuses, on every request path. Retries use exponential backoff with jitter (retry_delay up to the new retry_max_delay), retry_status_codes tunes what counts as transient, and max_retry_duration=0 retries indefinitely.