From: Henrik Nordstrom Date: Sat, 13 Feb 2010 00:00:53 +0000 (+0100) Subject: helper protocol concurrency=0 is the old protocol, not =1 X-Git-Tag: SQUID_3_2_0_1~418 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b708d9530b175cfa088d30a43e1d59e5613f2cc;p=thirdparty%2Fsquid.git helper protocol concurrency=0 is the old protocol, not =1 concurrency=1 actaully means new protocol with a single channel... not what the old helpers expect.. --- diff --git a/src/HelperChildConfig.cc b/src/HelperChildConfig.cc index 9cd5038680..f42e8560af 100644 --- a/src/HelperChildConfig.cc +++ b/src/HelperChildConfig.cc @@ -8,7 +8,7 @@ HelperChildConfig::HelperChildConfig() : n_max(0), n_startup(1), n_idle(1), - concurrency(1), + concurrency(0), n_running(0), n_active(0) {} diff --git a/src/HelperChildConfig.h b/src/HelperChildConfig.h index 1378763a0f..47c499d1d1 100644 --- a/src/HelperChildConfig.h +++ b/src/HelperChildConfig.h @@ -51,7 +51,7 @@ public: /** * How many concurrent requests each child helper may be capable of handling. - * Default: 1 - no concurrency possible. + * Default: 0 - no concurrency possible. */ unsigned int concurrency; diff --git a/src/cf.data.pre b/src/cf.data.pre index 91f1f41f80..6ee31b45fd 100644 --- a/src/cf.data.pre +++ b/src/cf.data.pre @@ -3221,7 +3221,7 @@ DOC_END NAME: url_rewrite_children redirect_children TYPE: HelperChildConfig -DEFAULT: 20 startup=0 idle=1 concurrency=1 +DEFAULT: 20 startup=0 idle=1 concurrency=0 LOC: Config.redirectChildren DOC_START The maximum number of redirector processes to spawn. If you limit