From 7e2c0cbda2629f816e9be7ea4bc5b72462753f88 Mon Sep 17 00:00:00 2001 From: jeg2 Date: Wed, 24 Oct 2007 20:00:10 +0000 Subject: * lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Explicitly start the HTTP connection to support keepalive requests. [ruby-Bugs-9353] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/xmlrpc/client.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/xmlrpc') diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb index fca0725ed0..726945ea39 100644 --- a/lib/xmlrpc/client.rb +++ b/lib/xmlrpc/client.rb @@ -530,6 +530,9 @@ module XMLRPC } else # reuse the HTTP object for each call => connection alive is possible + # we must start connection explicitely first time so that http.request + # does not assume that we don't want keepalive + @http.start if not @http.started? # post request resp = @http.post2(@path, request, header) -- cgit v1.2.3