Skip to content

Commit

Permalink
Disable parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Sep 30, 2024
1 parent 6ffdc20 commit e28283d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ PhasingExecutor createExecutor() {
}

private int getParallelism() {
int parallelism = Runtime.getRuntime().availableProcessors() / 2 + 1;
int parallelism = /*Runtime.getRuntime().availableProcessors() / 2 +*/ 1;
try {
String str = request.getUserProperties().get(Constants.MAVEN_MODEL_BUILDER_PARALLELISM);
if (str != null) {
Expand Down

0 comments on commit e28283d

Please sign in to comment.