From 9a4b0b11a9b168698f94e45a3023215dcdcd975f Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Fri, 14 Jan 2022 21:50:30 +0100 Subject: All non application clusters only needs a few threads. 2 should be sufficient. This is controlled by the featureflag so far only used for the metrics-proxy. This will bring the clustercontroller and logserver in line with the metrics-proxy. --- .../test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config-model/src/test') diff --git a/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java b/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java index eb1cf668cc9..14a90130a57 100755 --- a/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java +++ b/config-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java @@ -190,7 +190,7 @@ public class ContainerClusterTest { root.freezeModelTopology(); ThreadpoolConfig threadpoolConfig = root.getConfig(ThreadpoolConfig.class, "container0/component/default-threadpool"); - assertEquals(10, threadpoolConfig.maxthreads()); + assertEquals(2, threadpoolConfig.maxthreads()); assertEquals(50, threadpoolConfig.queueSize()); } -- cgit v1.2.3