summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-08-25 13:49:13 +0200
committerGitHub <noreply@github.com>2018-08-25 13:49:13 +0200
commitccda281b6c60de0e6c7108a8532d7f7438ebd9ae (patch)
treec3094209f7485a6cd243ee46b3b283a4c1b768d7
parent011d94ba6809d9c931a9e3d8d8bbcf9a28a97a61 (diff)
parentd7822ed81f5b546bedb5f2376f33d26fc0f570d6 (diff)
Merge pull request #6673 from vespa-engine/bratseth/generate-rank-profiles-for-all-models-part-7
Track internal API change
-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 f5c18f2b255..d88245587d2 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
@@ -237,7 +237,7 @@ public class StandaloneContainerApplication implements Application {
deployState.getProperties().vespaVersion(), deployState.getProperties().applicationId());
Element spec = containerRootElement(applicationPackage);
- ContainerModel containerModel = newContainerModelBuilder(networkingOption).build(deployState, configModelRepo, vespaRoot, spec);
+ ContainerModel containerModel = newContainerModelBuilder(networkingOption).build(deployState, root, configModelRepo, vespaRoot, spec);
containerModel.getCluster().prepare();
initializeContainerModel(containerModel, configModelRepo);
Container container = first(containerModel.getCluster().getContainers());