method
configure_http
configure_http(http)
private
Hide source
# File activeresource/lib/active_resource/connection.rb, line 168 def configure_http(http) http = apply_ssl_options(http) # Net::HTTP timeouts default to 60 seconds. if @timeout http.open_timeout = @timeout http.read_timeout = @timeout end http end


