This plugin adds support for retrying requests when errors happen.
It has a default max number of retries (see MAX_RETRIES and the max_retries option), after which it will return the last response, error or not. It will not raise an exception.
It does not retry which are not considered idempotent (see retry_change_requests to override).
Classes and Modules
Constants
DEFAULT_JITTER | = | ->(interval) { interval * ((rand + 1) * 0.5) } | ||
IDEMPOTENT_METHODS | = | %w[GET OPTIONS HEAD PUT DELETE].freeze |
TODO: pass max_retries in a configure/load block |
|
MAX_RETRIES | = | 3 | ||
RETRYABLE_ERRORS | = | [ IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE, Errno::EINVAL, Errno::ETIMEDOUT, Parser::Error, TLSError, TimeoutError, ConnectionError, Connection::HTTP2::GoawayError, ].freeze |
Public Class methods
extra_options(options)
[show source]
# File lib/httpx/plugins/retries.rb 37 def self.extra_options(options) 38 options.merge(max_retries: MAX_RETRIES) 39 end