From b3d088a256e8cc8c6c8b4c1a310527dc496e6fe4 Mon Sep 17 00:00:00 2001 From: Jon Marius Venstad Date: Thu, 6 Dec 2018 11:30:03 +0100 Subject: State " has not started" when config gen is unknown --- .../yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'controller-server') 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); -- cgit v1.2.3