summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2020-07-17 14:57:12 +0200
committergjoranv <gv@verizonmedia.com>2020-07-17 14:57:12 +0200
commit5e3ceedc16f375fff8140527917cbd907949d3d5 (patch)
tree606ef9527eebf50edd7f3cbcb86e6b5f0cf084b1
parentd15dd71dfcbe78ba2ca5a0332e256dd4f274bcb9 (diff)
Minor adjustment to error message.
-rw-r--r--container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java b/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java
index 4b728c166f4..3e8ef65ade6 100644
--- a/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java
+++ b/container-core/src/main/java/com/yahoo/container/core/config/ApplicationBundleLoader.java
@@ -113,7 +113,7 @@ public class ApplicationBundleLoader {
if (bundles.size() > 1 && osgi.hasFelixFramework()) {
// TODO: remove if-statement below when the last model with preinstall has rolled out of hosted
if (! bundles.get(0).getSymbolicName().equals("config-model-fat-amended"))
- throw new RuntimeException("Bundle '" + bundles.get(0).getSymbolicName() + "' tried to pre-install other bundles.");
+ throw new RuntimeException("Bundle '" + bundles.get(0).getSymbolicName() + "' tried to pre-install bundles from disk.");
}
reference2Bundle.put(reference, bundles.get(0));
}