mirror of https://github.com/apache/lucene.git
tests: speed test up a bit
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1452113 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7a28af4462
commit
61eca4446b
|
@ -62,7 +62,7 @@ public class RecoveryZkTest extends AbstractFullDistribZkTestBase {
|
|||
indexThread2.start();
|
||||
|
||||
// give some time to index...
|
||||
int[] waitTimes = new int[] {2000, 3000, 5000};
|
||||
int[] waitTimes = new int[] {200, 2000, 3000};
|
||||
Thread.sleep(waitTimes[random().nextInt(waitTimes.length - 1)]);
|
||||
|
||||
// bring shard replica down
|
||||
|
@ -79,9 +79,6 @@ public class RecoveryZkTest extends AbstractFullDistribZkTestBase {
|
|||
Thread.sleep(3000);
|
||||
ZkStateReader zkStateReader = cloudClient.getZkStateReader();
|
||||
|
||||
// give some time for replication to complete
|
||||
Thread.sleep(5000);
|
||||
|
||||
// stop indexing threads
|
||||
indexThread.safeStop();
|
||||
indexThread2.safeStop();
|
||||
|
|
|
@ -1208,6 +1208,11 @@ public abstract class AbstractFullDistribZkTestBase extends AbstractDistribZkTes
|
|||
deletes.add(i);
|
||||
}
|
||||
|
||||
try {
|
||||
Thread.currentThread().sleep(random().nextInt(100));
|
||||
} catch (InterruptedException e) {
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
}
|
||||
|
||||
System.err.println("added docs:" + numAdds + " with " + fails + " fails"
|
||||
|
|
Loading…
Reference in New Issue