summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-01-16 22:01:49 +0100
committerGitHub <noreply@github.com>2022-01-16 22:01:49 +0100
commitc318c148a4d347128d931b8e53f99161cd840030 (patch)
treecb83358e6b041f0bbc19c8b0897394c11be9c7f7 /config-model/src/test/java/com/yahoo
parent694f3e7367e3cb89d56ee4f50797763f24f62574 (diff)
parent9a4b0b11a9b168698f94e45a3023215dcdcd975f (diff)
Merge pull request #20823 from vespa-engine/balder/only-2-threads-for-ccv7.528.38
All non application clusters only needs a few threads. 2 should be su…
Diffstat (limited to 'config-model/src/test/java/com/yahoo')
-rwxr-xr-xconfig-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java2
1 files changed, 1 insertions, 1 deletions
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());
}