boost this test timeout as well

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1236261 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2012-01-26 16:08:52 +00:00
parent 9415095fc7
commit 2caf23ebf0
1 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ public class OverseerTest extends SolrTestCaseJ4 {
}
// make sure all cores have been returned a id
for (int i = 0; i < 150; i++) {
for (int i = 0; i < 90; i++) {
int assignedCount = 0;
for (int j = 0; j < coreCount; j++) {
if (ids[j] != null) {
@ -242,7 +242,7 @@ public class OverseerTest extends SolrTestCaseJ4 {
if (coreCount == assignedCount) {
break;
}
Thread.sleep(200);
Thread.sleep(500);
}
final HashMap<String, AtomicInteger> counters = new HashMap<String,AtomicInteger>();