From: Mike Mitchell Date: Tue, 20 May 2014 17:08:56 +0000 (-0700) Subject: Bug 4065: round-robin neighbor selection with unequal weights X-Git-Tag: SQUID_3_5_0_1~229 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2da06da0c4e9fec6829c6235045fb40eb0e838b5;p=thirdparty%2Fsquid.git Bug 4065: round-robin neighbor selection with unequal weights --- diff --git a/src/neighbors.cc b/src/neighbors.cc index 0e02bd7914..3d37ace352 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -467,7 +467,7 @@ peerClearRR() { CachePeer *p = NULL; for (p = Config.peers; p; p = p->next) { - p->rr_count = 0; + p->rr_count = 1; } }