summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2019-10-17 20:13:22 +0200
committerHarald Musum <musum@verizonmedia.com>2019-10-17 20:13:22 +0200
commit8335ad4157c88face97bb00b07f1239fb9c5269b (patch)
tree413878714577e93bc843f627c7ebeecc39220fdb /config-model
parentf966b8ff891e835972866865453dc54d5c2a858a (diff)
Move ZooKeeperServer to another module
zookeeper-server jar is not a preinstalled bundle, as zkfacade is, so need to add bundle explicitly for clustercontroller and add symlink from components dir for config server
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/admin/clustercontroller/ClusterControllerContainer.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/admin/clustercontroller/ClusterControllerContainer.java b/config-model/src/main/java/com/yahoo/vespa/model/admin/clustercontroller/ClusterControllerContainer.java
index a9af815aa1e..e45bf3f0921 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/admin/clustercontroller/ClusterControllerContainer.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/admin/clustercontroller/ClusterControllerContainer.java
@@ -29,7 +29,7 @@ public class ClusterControllerContainer extends Container implements
ZookeeperServerConfig.Producer
{
private static final ComponentSpecification CLUSTERCONTROLLER_BUNDLE = new ComponentSpecification("clustercontroller-apps");
- private static final ComponentSpecification ZOOKEEPER_SERVER_BUNDLE = new ComponentSpecification("zkfacade");
+ private static final ComponentSpecification ZOOKEEPER_SERVER_BUNDLE = new ComponentSpecification("zookeeper-server");
private final Set<String> bundles = new TreeSet<>();
@@ -59,6 +59,7 @@ public class ClusterControllerContainer extends Container implements
addFileBundle("lib/jars/clustercontroller-apputil-jar-with-dependencies.jar");
addFileBundle("lib/jars/clustercontroller-core-jar-with-dependencies.jar");
addFileBundle("lib/jars/clustercontroller-utils-jar-with-dependencies.jar");
+ addFileBundle("lib/jars/zookeeper-server-jar-with-dependencies.jar");
}
@Override