summaryrefslogtreecommitdiffstats
path: root/standalone-container
diff options
context:
space:
mode:
Diffstat (limited to 'standalone-container')
-rw-r--r--standalone-container/CMakeLists.txt2
-rw-r--r--standalone-container/src/main/java/com/yahoo/container/standalone/StandaloneContainerApplication.java1
2 files changed, 2 insertions, 1 deletions
diff --git a/standalone-container/CMakeLists.txt b/standalone-container/CMakeLists.txt
index c3026df11a4..9dbe9aa41db 100644
--- a/standalone-container/CMakeLists.txt
+++ b/standalone-container/CMakeLists.txt
@@ -1,3 +1,3 @@
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-install_fat_java_artifact(standalone-container)
+install_jar(standalone-container-jar-with-dependencies.jar)
install(PROGRAMS src/main/sh/standalone-container.sh DESTINATION libexec/vespa)
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 fe3e8782973..a677c69cb79 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
@@ -154,6 +154,7 @@ public class StandaloneContainerApplication implements Application {
public void start() {
try {
com.yahoo.container.Container.get().setCustomFileAcquirer(distributedFiles);
+ com.yahoo.container.Container.get().disableUrlDownloader();
configuredApplication.start();
} catch (Exception e) {
com.yahoo.container.Container.resetInstance();