boost how long we poll for this test

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236034 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-01-26 03:36:45 +00:00
parent 9072e892f2
commit 8c0102e11a
1 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ public class LeaderElectionIntegrationTest extends SolrTestCaseJ4 {
if(!leader.equals(currentLeader)) {
break;
}
Thread.sleep(100);
Thread.sleep(500);
}
leader = getLeader();
@ -231,7 +231,7 @@ public class LeaderElectionIntegrationTest extends SolrTestCaseJ4 {
} catch (KeeperException e) {
// ignore
}
Thread.sleep(200);
Thread.sleep(500);
}
return leader;
}