Skip to content

Commit fbe298f

Browse files
committed
parallelism test
1 parent 1d6c1c7 commit fbe298f

File tree

1 file changed

+2
-0
lines changed
  • src/main/java/org/scm4j/releaser/cli

1 file changed

+2
-0
lines changed

src/main/java/org/scm4j/releaser/cli/CLI.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import org.scm4j.releaser.exceptions.cmdline.*;
1515

1616
import java.io.PrintStream;
17+
import java.util.concurrent.ForkJoinPool;
1718

1819
public class CLI {
1920
public static final int EXIT_CODE_OK = 0;
@@ -90,6 +91,7 @@ protected IAction getTagAction(CommandLine cmd) {
9091
public int exec(String[] args) {
9192
try {
9293
out.println("scm4j-releaser " + CLI.class.getPackage().getSpecificationVersion());
94+
out.println("parallelism: " + ForkJoinPool.commonPool().getParallelism());
9395
long startMS = System.currentTimeMillis();
9496
CommandLine cmd = new CommandLine(args);
9597
validateCommandLine(cmd);

0 commit comments

Comments
 (0)