From: Amos Jeffries Date: Wed, 16 Sep 2009 08:42:33 +0000 (+1200) Subject: Correct peer connect-fail-limit default of 10 X-Git-Tag: SQUID_3_1_0_14~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=722ee79f1cab26e456026646d2db9711d35bb639;p=thirdparty%2Fsquid.git Correct peer connect-fail-limit default of 10 --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index 5b4999aba3..3ef655023c 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -1895,7 +1895,7 @@ parse_peer(peer ** head) p->weight = 1; if (p->connect_fail_limit < 1) - p->connect_fail_limit = 1; + p->connect_fail_limit = 10; p->icp.version = ICP_VERSION_CURRENT;