aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/http/JettyHttpServer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/http/JettyHttpServer.java b/config-model/src/main/java/com/yahoo/vespa/model/container/http/JettyHttpServer.java
index b28a2edff0e..674d2ce3325 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/http/JettyHttpServer.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/http/JettyHttpServer.java
@@ -78,7 +78,7 @@ public class JettyHttpServer extends SimpleComponent implements ServerConfig.Pro
if (cluster instanceof ApplicationContainerCluster) {
configureApplicationClusterJettyThreadPool(builder);
} else {
- builder.minWorkerThreads(2).maxWorkerThreads(4);
+ builder.minWorkerThreads(4).maxWorkerThreads(4);
}
}
private void configureApplicationClusterJettyThreadPool(ServerConfig.Builder builder) {