From c95cfa0a16305ffb2d701cb2f54bac8b501d86d5 Mon Sep 17 00:00:00 2001 From: tenderlove Date: Tue, 6 Mar 2012 23:30:15 +0000 Subject: use factory method for constructing Net::HTTP objects git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34937 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/xmlrpc/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/xmlrpc') diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb index a75067ab8b..5c11d4f38b 100644 --- a/lib/xmlrpc/client.rb +++ b/lib/xmlrpc/client.rb @@ -526,7 +526,7 @@ module XMLRPC if async # use a new HTTP object for each call - http = Net::HTTP.new(@host, @port, @proxy_host, @proxy_port) + http = net_http.new(@host, @port, @proxy_host, @proxy_port) http.use_ssl = @use_ssl if @use_ssl http.read_timeout = @timeout http.open_timeout = @timeout -- cgit v1.2.3