summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-05-29 10:20:45 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-05-29 10:24:22 +0000
commit213b56568ea0c0997b64d74915e43c56fd19789a (patch)
treee60085e8ff9bd8623678a555f6c816adddd09793 /config-model
parent8dfa395f0c959987bd000507bf6940238f571b50 (diff)
Remove softStart from code too.
Diffstat (limited to 'config-model')
-rwxr-xr-xconfig-model/src/test/java/com/yahoo/vespa/model/container/ContainerClusterTest.java4
1 files changed, 0 insertions, 4 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 ceef0ccf1e2..739ae055ec7 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
@@ -167,7 +167,6 @@ public class ContainerClusterTest {
ThreadpoolConfig threadpoolConfig = new ThreadpoolConfig(tpBuilder);
assertEquals(10, threadpoolConfig.maxthreads());
assertEquals(0, threadpoolConfig.queueSize());
- assertEquals(0, threadpoolConfig.softStartSeconds(), 0);
}
@Test
@@ -220,7 +219,6 @@ public class ContainerClusterTest {
ThreadpoolConfig threadpoolConfig = new ThreadpoolConfig(tpBuilder);
assertEquals(500, threadpoolConfig.maxthreads());
assertEquals(0, threadpoolConfig.queueSize());
- assertEquals(0.0, threadpoolConfig.softStartSeconds(), 0.0);
}
@Test
@@ -235,7 +233,6 @@ public class ContainerClusterTest {
ThreadpoolConfig threadpoolConfig = new ThreadpoolConfig(tpBuilder);
assertEquals(40, threadpoolConfig.maxthreads());
assertEquals(700, threadpoolConfig.queueSize());
- assertEquals(0.0, threadpoolConfig.softStartSeconds(), 0.0);
}
@Test
@@ -249,7 +246,6 @@ public class ContainerClusterTest {
ThreadpoolConfig threadpoolConfig = new ThreadpoolConfig(tpBuilder);
assertEquals(500, threadpoolConfig.maxthreads());
assertEquals(0, threadpoolConfig.queueSize());
- assertEquals(0.0, threadpoolConfig.softStartSeconds(), 0.0);
}
@Test