complete the bug fix
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 Jul 2007 16:26:53 +0000 (16:26 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 Jul 2007 16:26:53 +0000 (16:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@557676 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/tribes/tipis/LazyReplicatedMap.java

index 0002d95..653b52a 100644 (file)
@@ -140,7 +140,7 @@ public class LazyReplicatedMap extends AbstractReplicatedMap
             Member next = members[nextIdx];
             
             //increment for the next round of back up selection
-            nextIdx = firstIdx + 1;
+            nextIdx = nextIdx + 1;
             if ( nextIdx >= members.length ) nextIdx = 0;
             
             if (next == null) {