summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-11-01 15:20:16 +0100
committerJon Marius Venstad <venstad@gmail.com>2018-11-01 21:28:51 +0100
commit6e612ff289ca82db4e4ff969917edba4cbab1eb1 (patch)
tree1eb38e9d22007b3a45789aa63c606cec349f2ae7 /controller-server
parent68ef83a3be91da41dcf0a2bb389f9eeedcc45b50 (diff)
Clear pausedUntil on triggering
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/JobStatus.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/JobStatus.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/JobStatus.java
index c1d6095bcbb..59220d38821 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/JobStatus.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/JobStatus.java
@@ -60,7 +60,7 @@ public class JobStatus {
}
public JobStatus withTriggering(JobRun jobRun) {
- return new JobStatus(type, jobError, Optional.of(jobRun), lastCompleted, firstFailing, lastSuccess, pausedUntil);
+ return new JobStatus(type, jobError, Optional.of(jobRun), lastCompleted, firstFailing, lastSuccess, OptionalLong.empty());
}
public JobStatus withCompletion(long runId, Optional<DeploymentJobs.JobError> jobError, Instant completion) {