aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-07-01 17:29:55 +0200
committerjonmv <venstad@gmail.com>2022-07-01 17:29:55 +0200
commitd18ff9e7e115995a1131ab2ba3f456173d982a12 (patch)
tree94da150f4774feb8df4968e009da7e8675091712 /controller-server/src/main/java/com
parent0c18fdd48a7202fba90126de776c7fda86a15c44 (diff)
Avoid unlikely test scenario which conflicts with another unlikely test scenario
Diffstat (limited to 'controller-server/src/main/java/com')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/DeploymentStatus.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/DeploymentStatus.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/DeploymentStatus.java
index 2b764abb090..24cd92d005f 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/DeploymentStatus.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/DeploymentStatus.java
@@ -518,7 +518,6 @@ public class DeploymentStatus {
boolean revisionReadyFirst = revisionReadyAt.get().isBefore(platformReadyAt.get());
boolean failingUpgradeOnlyTests = ! jobs().type(systemTest(job.type()), stagingTest(job.type()))
.failingHardOn(Versions.from(change.withoutApplication(), application, deploymentFor(job), systemVersion))
- .matching(testJob -> ! testJob.isSuccess())
.isEmpty();
switch (rollout) {
case separate: // Let whichever change rolled out first, keep rolling first, unless upgrade alone is failing.