Skip to content

Commit

Permalink
Restore the default parallelism in the model builder
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Oct 2, 2024
1 parent 1062d05 commit cd5407c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,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 cd5407c

Please sign in to comment.