From: Amos Jeffries Date: Mon, 14 Sep 2009 01:44:19 +0000 (+1200) Subject: Correct peer connect-fail-limit default of 10 X-Git-Tag: SQUID_3_2_0_1~723 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4d889e0b22b6305ec057c0e3341ca2c21f2c90e;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 f17dbba68b..2689d2f0a2 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;