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
329 def retryable_error?(ex)
330   super || ex.is_a?(ProxyConnectionError)
331 end