aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-07-12 00:48:57 +0200
committergjoranv <gv@verizonmedia.com>2022-07-12 01:41:37 +0200
commita6cc157a30fea6bd60274c74d2bb0c259b304ebf (patch)
tree8fa4a5cb3bab68a60b84f518bdadbee935c1ee94 /config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java
parentb6f197461e83a02c9bdd13da0cfc932fcacabbc1 (diff)
Simplify creation of BundleInstantiationSpec
Diffstat (limited to 'config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/container/ContainerThreadpool.java2
1 files changed, 1 insertions, 1 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 fbd7bc9fe56..fb4e62f5cd1 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
@@ -24,7 +24,7 @@ public abstract class ContainerThreadpool extends SimpleComponent implements Con
public ContainerThreadpool(String name, UserOptions userOptions) {
super(new ComponentModel(
- BundleInstantiationSpecification.getFromStrings(
+ BundleInstantiationSpecification.fromStrings(
"threadpool@" + name,
ContainerThreadpoolImpl.class.getName(),
null)));