--------------------- PatchSet 11632 Date: 2007/09/03 04:37:02 Author: hno Branch: HEAD Tag: (none) Log: MFC: Adjust default pconn timeouts to avoid shutting down connection while child sends request The default pconn_timeout / persistent_request_timeout values was selected a bit unfortunate. persistent_request_timeout should be bigger than pconn_timeout, or we may risk closing the connection while a child sends the next request. Members: src/cf.data.pre:1.415->1.416 Index: squid/src/cf.data.pre =================================================================== RCS file: /cvsroot/squid/squid/src/cf.data.pre,v retrieving revision 1.415 retrieving revision 1.416 diff -u -r1.415 -r1.416 --- squid/src/cf.data.pre 27 Aug 2007 12:51:41 -0000 1.415 +++ squid/src/cf.data.pre 3 Sep 2007 04:37:02 -0000 1.416 @@ -1,6 +1,6 @@ # -# $Id: cf.data.pre,v 1.415 2007/08/27 12:51:41 hno Exp $ +# $Id: cf.data.pre,v 1.416 2007/09/03 04:37:02 hno Exp $ # # SQUID Web Proxy Cache http://www.squid-cache.org/ # ---------------------------------------------------------- @@ -2634,7 +2634,7 @@ NAME: persistent_request_timeout TYPE: time_t LOC: Config.Timeout.persistent_request -DEFAULT: 1 minute +DEFAULT: 2 minutes DOC_START How long to wait for the next HTTP request on a persistent connection after the previous request completes. @@ -2680,7 +2680,7 @@ NAME: pconn_timeout TYPE: time_t LOC: Config.Timeout.pconn -DEFAULT: 120 seconds +DEFAULT: 1 minute DOC_START Timeout for idle persistent connections to servers and other proxies.