Skip to content

Commit

Permalink
fix:increase threads
Browse files Browse the repository at this point in the history
  • Loading branch information
sr4850 committed Oct 25, 2024
1 parent 3a82cdc commit 6401285
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,12 @@
<argLine>-Xmx${jvmMemory}m</argLine>
<testFailureIgnore>true</testFailureIgnore>
<rerunFailingTestsCount>1</rerunFailingTestsCount>
<forkCount>3</forkCount>
<forkCount>4</forkCount>
<includes>
<include>**/**.java</include>
</includes>
<parallel>methods</parallel>
<threadCount>3</threadCount>
<threadCount>4</threadCount>
<reuseForks>true</reuseForks>
</configuration>
</plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.util.concurrent.ForkJoinPool;
import java.util.function.Predicate;
public class CustomRunner implements ParallelExecutionConfiguration, ParallelExecutionConfigurationStrategy {
private static final int FIXED_PARALLELISM = 3;
private static final int FIXED_PARALLELISM = 4;

static {
System.out.println("THREADS: " + FIXED_PARALLELISM);
Expand Down

0 comments on commit 6401285

Please sign in to comment.