aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-04-19 11:29:55 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2022-04-19 13:35:09 +0200
commitd965890a02a55f2761ef65e81185747084e37684 (patch)
tree092bc3e854b68ec861ec420383edd70d4846a7c1 /config-model/src/main/java/com/yahoo/vespa/model/container
parent607ba8c0e577e318890d9f253187ac290cf5eb05 (diff)
Improve class names for the container threadpools
Diffstat (limited to 'config-model/src/main/java/com/yahoo/vespa/model/container')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java
index 7111a88fc01..489e4cc135a 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java
@@ -4,7 +4,7 @@ package com.yahoo.vespa.model.container;
import com.yahoo.container.bundle.BundleInstantiationSpecification;
import com.yahoo.container.handler.threadpool.ContainerThreadPool;
import com.yahoo.container.handler.threadpool.ContainerThreadpoolConfig;
-import com.yahoo.container.handler.threadpool.DefaultContainerThreadpool;
+import com.yahoo.container.handler.threadpool.ContainerThreadpoolImpl;
import com.yahoo.osgi.provider.model.ComponentModel;
import com.yahoo.text.XML;
import com.yahoo.vespa.model.container.component.SimpleComponent;
@@ -26,7 +26,7 @@ public class ContainerThreadpool extends SimpleComponent implements ContainerThr
super(new ComponentModel(
BundleInstantiationSpecification.getFromStrings(
"threadpool@" + name,
- DefaultContainerThreadpool.class.getName(),
+ ContainerThreadpoolImpl.class.getName(),
null)));
this.name = name;
this.userOptions = userOptions;