summaryrefslogtreecommitdiffstats
path: root/lib/xmlrpc
diff options
context:
space:
mode:
authorjeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-24 20:00:10 +0000
committerjeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-24 20:00:10 +0000
commit075e1b426b29635bf5039e5b9222a09866c14679 (patch)
tree85b67e240b17c99c5b2c023be02c017a185f8469 /lib/xmlrpc
parentacd6cfa5b9d83613370f944c253e6f3e2a62ca6e (diff)
downloadruby-075e1b426b29635bf5039e5b9222a09866c14679.tar.gz
ruby-075e1b426b29635bf5039e5b9222a09866c14679.tar.xz
ruby-075e1b426b29635bf5039e5b9222a09866c14679.zip
* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Explicitly start
the HTTP connection to support keepalive requests. [ruby-Bugs-9353] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/xmlrpc')
-rw-r--r--lib/xmlrpc/client.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb
index fca0725ed..726945ea3 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)