summaryrefslogtreecommitdiffstats
path: root/configserver
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2018-01-17 13:05:27 +0100
committerJon Bratseth <bratseth@yahoo-inc.com>2018-01-17 13:05:27 +0100
commitc84b8f952ef5857aa44fad479551eda1f3a4e106 (patch)
treee7bf28337efaa9bc02e7c13c2cd14777a46135b1 /configserver
parent66b3a3ca7c14097f9a277431c19c169e3681a4de (diff)
Persist constant info in ZooKeeper
Diffstat (limited to 'configserver')
-rw-r--r--configserver/src/main/java/com/yahoo/vespa/config/server/deploy/ZooKeeperClient.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/configserver/src/main/java/com/yahoo/vespa/config/server/deploy/ZooKeeperClient.java b/configserver/src/main/java/com/yahoo/vespa/config/server/deploy/ZooKeeperClient.java
index 5e87c6c0f6b..c9c6ef4b428 100644
--- a/configserver/src/main/java/com/yahoo/vespa/config/server/deploy/ZooKeeperClient.java
+++ b/configserver/src/main/java/com/yahoo/vespa/config/server/deploy/ZooKeeperClient.java
@@ -202,8 +202,8 @@ public class ZooKeeperClient {
writeDir(app.getFile(Path.fromString(ApplicationPackage.ROUTINGTABLES_DIR)),
getZooKeeperAppPath(ConfigCurator.USERAPP_ZK_SUBPATH).append(ApplicationPackage.ROUTINGTABLES_DIR),
xmlFilter, true);
- writeDir(app.getFile(ApplicationPackage.MODELS_GENERATED_DIR),
- getZooKeeperAppPath(ConfigCurator.USERAPP_ZK_SUBPATH).append(ApplicationPackage.MODELS_GENERATED_DIR),
+ writeDir(app.getFile(ApplicationPackage.MODELS_GENERATED_REPLICATED_DIR),
+ getZooKeeperAppPath(ConfigCurator.USERAPP_ZK_SUBPATH).append(ApplicationPackage.MODELS_GENERATED_REPLICATED_DIR),
true);
}