Default HTTP status codes that should trigger a retry attempt
Description
These status codes indicate temporary failures that might
succeed if retried after a delay. Includes timeout, rate limiting,
and server errors that are typically transient.
Example
// Check if status should be retried if (DEFAULT_RETRY_STATUSES.includes(response.status)) { // Retry the request }
Default HTTP status codes that should trigger a retry attempt