diff options
author | tenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-03-03 01:12:24 +0000 |
---|---|---|
committer | tenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-03-03 01:12:24 +0000 |
commit | 85e866978fb54cddf2692a9d3e439c709956eb62 (patch) | |
tree | 6416d600e08ecd86e7b924ff47bcc5455b43508e /lib/xmlrpc | |
parent | 46e293ec0d3a7b6522101d17bb44d76f2ba8b827 (diff) |
remove another call to Net::HTTP.version_1_2
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34887 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/xmlrpc')
-rw-r--r-- | lib/xmlrpc/client.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb index d4123211d8..21ebb2e604 100644 --- a/lib/xmlrpc/client.rb +++ b/lib/xmlrpc/client.rb @@ -522,7 +522,6 @@ module XMLRPC if async # use a new HTTP object for each call - Net::HTTP.version_1_2 http = Net::HTTP.new(@host, @port, @proxy_host, @proxy_port) http.use_ssl = @use_ssl if @use_ssl http.read_timeout = @timeout |