SOLR-7569 test failure fix

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1714842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2015-11-17 18:15:07 +00:00
parent dd8b980036
commit b5ed21b258
1 changed files with 3 additions and 2 deletions

View File

@ -18,6 +18,7 @@ package org.apache.solr.cloud;
*/ */
import java.io.IOException; import java.io.IOException;
import java.util.Arrays;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
@ -381,8 +382,8 @@ public class ForceLeaderTest extends HttpPartitionTest {
for (int j = 0; j < notLeaders.size(); j++) for (int j = 0; j < notLeaders.size(); j++)
lirStates[j] = zkController.getLeaderInitiatedRecoveryState(collectionName, shard, notLeaders.get(j).getName()); lirStates[j] = zkController.getLeaderInitiatedRecoveryState(collectionName, shard, notLeaders.get(j).getName());
for (State lirState : lirStates) for (State lirState : lirStates)
assertEquals("Expected that the LIR state would've been down by now", assertTrue("Expected that the replicas would be in LIR state by now. LIR states: "+Arrays.toString(lirStates),
Replica.State.DOWN, (lirState)); Replica.State.DOWN == lirState || Replica.State.RECOVERING == lirState);
} }
protected void bringBackOldLeaderAndSendDoc(String collection, Replica leader, List<Replica> notLeaders, int docid) throws Exception { protected void bringBackOldLeaderAndSendDoc(String collection, Replica leader, List<Replica> notLeaders, int docid) throws Exception {