From 0c8ae9165180e39c8a18e2172876eef83cd3eae9 Mon Sep 17 00:00:00 2001 From: nagachika Date: Wed, 7 Mar 2012 13:45:04 +0000 Subject: * lib/xmlrpc/client.rb (module XMLRPC): fix typo. * test/xmlrpc/test_client.rb (test_async_call): add test for XMLRPC::Client#call_async to check above fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/xmlrpc/client.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb index 5c11d4f38b..54f721fd37 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(@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