Skip to content

Commit

Permalink
Make the JVM crush detector ready for heavy prime time!
Browse files Browse the repository at this point in the history
  • Loading branch information
uschindler committed Jan 3, 2021
1 parent efcfccc commit c56851c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public void setUp() throws Exception {
}

public void testAceWithThreads() throws Exception {
for (int iter = 0; iter < 10; iter++) {
final int iters = RANDOM_MULTIPLIER * (TEST_NIGHTLY ? 10 : 50);
for (int iter = 0; iter < iters; iter++) {
Directory dir = getDirectory(createTempDir("testAceWithThreads"));
IndexOutput out = dir.createOutput("test", IOContext.DEFAULT);
Random random = random();
Expand Down

0 comments on commit c56851c

Please sign in to comment.