mirror of https://github.com/apache/lucene.git
tests: start ids higher so it's easier to find them in logs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1427620 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6b6d1f65c2
commit
9fb47ac8ed
|
@ -88,7 +88,7 @@ public class ChaosMonkeySafeLeaderTest extends AbstractFullDistribZkTestBase {
|
|||
List<StopableIndexingThread> threads = new ArrayList<StopableIndexingThread>();
|
||||
int threadCount = 2;
|
||||
for (int i = 0; i < threadCount; i++) {
|
||||
StopableIndexingThread indexThread = new StopableIndexingThread(i * 50000, true);
|
||||
StopableIndexingThread indexThread = new StopableIndexingThread(10000 + i*50000, true);
|
||||
threads.add(indexThread);
|
||||
indexThread.start();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue