aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-12-06 11:30:03 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2018-12-06 11:30:03 +0100
commitb3d088a256e8cc8c6c8b4c1a310527dc496e6fe4 (patch)
treee60a59de696863adaa626a778a998d1ea0b515cb /controller-server
parent75276d4828add1bf65718e91b4eac19165f14a6c (diff)
State " has not started" when config gen is unknown
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
index e1ce982b75c..7cefd9ae6b4 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
@@ -313,7 +313,7 @@ public class InternalStepRunner implements StepRunner {
serviceStatus.host().value(),
serviceStatus.type(),
serviceStatus.port(),
- serviceStatus.currentGeneration() == -1 ? "(unknown)" : Long.toString(serviceStatus.currentGeneration())))
+ serviceStatus.currentGeneration() == -1 ? "not started!" : Long.toString(serviceStatus.currentGeneration())))
.collect(Collectors.toList());
logger.log(statuses);