summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-05-24 09:52:21 +0200
committerjonmv <venstad@gmail.com>2023-05-24 09:52:21 +0200
commit43f36b93e22626fda08fb87a679124ff1b4cdf20 (patch)
tree1a4d35c74cf14068b318130a0421ca394addf760 /controller-server
parentb1fa766a08070cbc2d5a76d90d2a223027484b65 (diff)
Cancelled jobs were cancelled by users
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 d992c0a273b..14494072061 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
@@ -808,7 +808,7 @@ public class InternalStepRunner implements StepRunner {
NotificationSource source = NotificationSource.from(run.id());
Consumer<String> updater = msg -> controller.notificationsDb().setNotification(source, Notification.Type.deployment, Notification.Level.error, msg);
switch (isRemoved ? success : run.status()) {
- case aborted: return; // wait and see how the next run goes.
+ case aborted, cancelled: return; // wait and see how the next run goes.
case noTests:
case running:
case success: