summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2020-03-31 11:47:54 +0200
committerHarald Musum <musum@verizonmedia.com>2020-03-31 11:47:54 +0200
commitf70b69627b927325ae40990197973b7d3e0a9698 (patch)
treee058d953fc1050aa83c9f669dbf427edf3d2bb43 /controller-server
parenteba83f654b90e0f0c5eab8c758ac0a2d82451239 (diff)
Reduce timeout for nodesDown and noNodeDown in cd
When there are issues preventing progress in cd, 30 minutes is too long to wait for the errors to show up
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/deployment/InternalStepRunner.java4
1 files changed, 2 insertions, 2 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 596e19bfe65..71be06deec5 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
@@ -941,8 +941,8 @@ public class InternalStepRunner implements StepRunner {
Duration endpoint() { return Duration.ofMinutes(15); }
Duration endpointCertificate() { return Duration.ofMinutes(15); }
Duration tester() { return Duration.ofMinutes(30); }
- Duration nodesDown() { return Duration.ofMinutes(system.isCd() ? 30 : 60); }
- Duration noNodesDown() { return Duration.ofMinutes(system.isCd() ? 30 : 120); }
+ Duration nodesDown() { return Duration.ofMinutes(system.isCd() ? 20 : 60); }
+ Duration noNodesDown() { return Duration.ofMinutes(system.isCd() ? 20 : 120); }
Duration testerCertificate() { return Duration.ofMinutes(300); }
}