say what state we found if we found one that is not ACTIVE

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1291586 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-02-21 04:01:56 +00:00
parent 13956ea166
commit bd31c935d1
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ public abstract class AbstractDistributedZkTestCase extends BaseDistributedSearc
String state = shard.getValue().get(ZkStateReader.STATE_PROP);
if (!state.equals(ZkStateReader.ACTIVE)) {
fail("Not all shards are ACTIVE");
fail("Not all shards are ACTIVE - found a shard that is: " + state);
}
}
}