module Excon
def defaults
-
(Hash)
- defaults for Excon connections
def defaults @defaults ||= { :connect_timeout => 60, :headers => {}, :instrumentor_name => 'excon', :mock => false, :read_timeout => 60, :retry_limit => DEFAULT_RETRY_LIMIT, :ssl_ca_file => DEFAULT_CA_FILE, :ssl_verify_peer => RbConfig::CONFIG['host_os'] !~ /mswin|win32|dos|cygwin|mingw/i, :write_timeout => 60 } end