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:
Yonik Seeley 2013-01-02 01:33:56 +00:00
parent 6b6d1f65c2
commit 9fb47ac8ed
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}