aboutsummaryrefslogtreecommitdiffstats
path: root/standalone-container
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-02-07 12:26:42 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2022-02-07 12:26:42 +0100
commit4a2fc66d8403b89d21691901fdb6e7e443719cc0 (patch)
treef2e7f0d82597e10a25e3cd5053b2f71f3b3c4067 /standalone-container
parent2c4ea0a81062c3effa25ec42d44d0fc86adb1980 (diff)
Follow api change
Diffstat (limited to 'standalone-container')
-rw-r--r--standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java6
1 files changed, 3 insertions, 3 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 74eff01984f..fe3e8782973 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
@@ -256,7 +256,7 @@ public class StandaloneContainerApplication implements Application {
// such that the above and below code to finalize the container can be
// replaced by root.finalize();
- initializeContainer(deployState.getDeployLogger(), container, spec);
+ initializeContainer(deployState, container, spec);
root.freezeModelTopology();
return new Pair<>(root, container);
@@ -287,12 +287,12 @@ public class StandaloneContainerApplication implements Application {
return builder.build();
}
- private static void initializeContainer(DeployLogger deployLogger, Container container, Element spec) {
+ private static void initializeContainer(DeployState deployState, Container container, Element spec) {
HostResource host = container.getRoot().hostSystem().getHost(Container.SINGLENODE_CONTAINER_SERVICESPEC);
container.setBasePort(VespaDomBuilder.getXmlWantedPort(spec));
container.setHostResource(host);
- container.initService(deployLogger);
+ container.initService(deployState);
}
private static Element getJDiscInServices(Element element) {