summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2012-05-15 00:12:21 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2012-05-15 00:12:21 +0200
commit8221431757c775ee875a061b184b5f6f2330f928 (patch)
treeedabb3dba1986f264f8e34de70b1efb6d318253a /methods
parent046e104e1371584251ad2568a11090fe4ed9a42e (diff)
* methods/http.cc:
- after many years of pointless discussions disable http/1.1 pipelining by default as many webservers and proxies seem to be unable to conform to specification must's (rfc2616 section 8.1.2.2) (LP: #996151)
Diffstat (limited to 'methods')
-rw-r--r--methods/http.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/http.cc b/methods/http.cc
index bb02176e9..c8e6f1b7b 100644
--- a/methods/http.cc
+++ b/methods/http.cc
@@ -61,7 +61,7 @@ using namespace std;
string HttpMethod::FailFile;
int HttpMethod::FailFd = -1;
time_t HttpMethod::FailTime = 0;
-unsigned long PipelineDepth = 10;
+unsigned long PipelineDepth = 0;
unsigned long TimeOut = 120;
bool AllowRedirect = false;
bool Debug = false;