summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2020-01-23 10:46:27 +0100
committerJon Marius Venstad <venstad@gmail.com>2020-01-24 15:42:45 +0100
commit59b7e6370223866905efb73089d489a134433223 (patch)
treec5fb89cfb54c6e942e04d3baffae47ed184c4786
parent15f4871f57249df7e06b50c1dd039e421f760a03 (diff)
Wipe certificates when writing runs to history
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/Run.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/Run.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/Run.java
index 00021c4765a..2851d4ccbdb 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/Run.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/Run.java
@@ -90,7 +90,7 @@ public class Run {
public Run finished(Instant now) {
requireActive();
return new Run(id, steps, versions, start, Optional.of(now), status == running ? success : status,
- lastTestRecord, lastVespaLogTimestamp, testerCertificate);
+ lastTestRecord, lastVespaLogTimestamp, Optional.empty());
}
public Run aborted() {