From: Mike Mitchell Date: Tue, 3 Jun 2014 06:49:46 +0000 (-0600) Subject: Bug 4065: round-robin neighbor selection with unequal weights X-Git-Tag: SQUID_3_4_6~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acff33e382b78ae3d061cd0bc5a33b4d22f5810f;p=thirdparty%2Fsquid.git Bug 4065: round-robin neighbor selection with unequal weights --- diff --git a/src/neighbors.cc b/src/neighbors.cc index bd9a407ba7..6a9abad7e6 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -432,7 +432,7 @@ peerClearRR() { CachePeer *p = NULL; for (p = Config.peers; p; p = p->next) { - p->rr_count = 0; + p->rr_count = 1; } }