From: Christos Tsantilas Date: Fri, 1 May 2015 06:25:14 +0000 (-0700) Subject: Bug 3775: Disable HTTP/1.1 pipeline feature for pinned connections X-Git-Tag: merge-candidate-3-v1~143 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=efbea40221e9bc193580a9798cd92c7be20ea895;p=thirdparty%2Fsquid.git Bug 3775: Disable HTTP/1.1 pipeline feature for pinned connections --- diff --git a/src/client_side.cc b/src/client_side.cc index 6f452ed4ce..fb77f3cc81 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -2727,6 +2727,9 @@ clientProcessRequest(ConnStateData *conn, const Http1::RequestParserPointer &hp, int ConnStateData::pipelinePrefetchMax() const { + // TODO: Support pipelined requests through pinned connections. + if (pinning.pinned) + return 0; return Config.pipeline_max_prefetch; }