summaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2023-06-12 22:58:49 +0200
committerHarald Musum <musum@yahooinc.com>2023-06-12 22:58:49 +0200
commit25fcb6dcb1b6463f68e14209d965128cd287d530 (patch)
tree31818ff0b085761a79e756e669f91509a404e69d /controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java
parent4de31ab2fa23f4e3ef51110a7270e9b2da170ace (diff)
Change message when service is not up and running with new config
Diffstat (limited to 'controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java')
-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 59ebe0d07d3..0b3c61858c2 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
@@ -356,7 +356,7 @@ public class InternalStepRunner implements StepRunner {
if (summary.upgradingOs() > 0)
logger.log(summary.upgradingOs() + " nodes upgrading OS");
if (summary.needNewConfig() > 0)
- logger.log(summary.needNewConfig() + " application services upgrading");
+ logger.log(summary.needNewConfig() + " application services not up and running with new config");
}
if (summary.converged()) {
controller.jobController().locked(id, lockedRun -> lockedRun.withSummary(null));