module HTTPX::Plugins::Proxy::ProxyRetries::InstanceMethods

  1. lib/httpx/plugins/proxy.rb

Methods

Public Instance

  1. retryable_error?

Public Instance methods

retryable_error?(ex)
[show source]
    # File lib/httpx/plugins/proxy.rb
327 def retryable_error?(ex)
328   super || ex.is_a?(ProxyConnectionError)
329 end