summaryrefslogtreecommitdiffstats
path: root/standalone-container
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-10-04 00:04:05 +0200
committerGitHub <noreply@github.com>2018-10-04 00:04:05 +0200
commit9bff51eb4a6a05c971f07a1df6574a7af3af677b (patch)
treeae620ae2726ada7538bcf7719eaba44fd343c816 /standalone-container
parent27938740d003383ca93f3c3ac5bfa86dd51477dd (diff)
parent3e52d3e21f97af574e8a7e20b50a99b0fb8a0b41 (diff)
Merge pull request #7190 from vespa-engine/balder/reduce-usage-of-complex-deploystate
Balder/reduce usage of complex deploystate
Diffstat (limited to 'standalone-container')
-rw-r--r--standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java b/standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java
index 8d2cd429517..ae7b8356682 100644
--- a/standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java
+++ b/standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java
@@ -243,7 +243,7 @@ public class StandaloneContainerApplication implements Application {
Element spec = containerRootElement(applicationPackage);
ContainerModel containerModel = newContainerModelBuilder(networkingOption).build(deployState, root, configModelRepo, vespaRoot, spec);
- containerModel.getCluster().prepare();
+ containerModel.getCluster().prepare(deployState);
initializeContainerModel(containerModel, configModelRepo);
Container container = first(containerModel.getCluster().getContainers());