From acff33e382b78ae3d061cd0bc5a33b4d22f5810f Mon Sep 17 00:00:00 2001 From: Mike Mitchell Date: Tue, 3 Jun 2014 00:49:46 -0600 Subject: [PATCH] Bug 4065: round-robin neighbor selection with unequal weights --- src/neighbors.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.47.2