Disable parallelism

This commit is contained in:
Guillaume Nodet 2024-09-30 15:47:29 +02:00
parent 6ffdc2015a
commit e28283d81c

View File

@ -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) {