we don't care if commit fails while we wait for things to settle down in this test

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236525 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-01-27 04:38:02 +00:00
parent 21e0d0c909
commit 17a5d3e5cb
1 changed files with 5 additions and 1 deletions

View File

@ -168,7 +168,11 @@ public class ChaosMonkeyNothingIsSafeTest extends FullSolrCloudTest {
do {
waitForRecoveriesToFinish(VERBOSE);
commit();
try {
commit();
} catch (Exception e) {
// we don't care if this commit fails on some nodes
}
updateMappingsFromZk(jettys, clients);