class Aws::Plugins::RetryErrors

@seahorse.client.option [Integer] :retry_limit (3)

The maximum number of times to retry failed requests.  Only
~ 500 level server errors and certain ~ 400 level client errors
are retried.  Generally, these are throttling errors, data
checksum errors, networking errors, timeout errors and auth
errors from expired credentials.

Public Instance Methods

add_handlers(handlers, config) click to toggle source
# File lib/aws-sdk-core/plugins/retry_errors.rb, line 154
def add_handlers(handlers, config)
  if config.retry_limit > 0
    handlers.add(Handler, step: :sign, priority: 99)
  end
end