class Aws::Plugins::RetryErrors::Handler

def should_retry?(context, error)

def should_retry?(context, error)
  retryable?(context, error) and
  context.retries < retry_limit(context) and
  response_truncatable?(context)
end