summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorKristian Aune <kristian@ymail.com>2019-06-19 15:18:54 +0200
committerKristian Aune <kristian@ymail.com>2019-06-19 15:18:54 +0200
commit9db81fbe420705d710c3ae053454486eef9526bf (patch)
tree907136048fe01827bb134c36af8485233917cc4e /config-model
parenta7f09578cead2659573a9efa5254964f698d2958 (diff)
less scary warning when running on Docker
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/HostSystem.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/HostSystem.java b/config-model/src/main/java/com/yahoo/vespa/model/HostSystem.java
index 9e0bbc395df..0dde5c99d4a 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/HostSystem.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/HostSystem.java
@@ -56,7 +56,8 @@ public class HostSystem extends AbstractConfigProducer<Host> {
}
if (! hostname.contains(".")) {
deployLogger.log(Level.WARNING, "Host named '" + hostname + "' may not receive any config " +
- "since it is not a canonical hostname");
+ "since it is not a canonical hostname." +
+ "Disregard this warning when testing in a Docker container.");
}
}