aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreer <andreer@verizonmedia.com>2020-04-02 12:45:30 +0200
committerandreer <andreer@verizonmedia.com>2020-04-02 12:45:30 +0200
commit3cefff8e65700046eda08ed55b8a94b5518c1e89 (patch)
tree008991fbf563693975f723d6960d6d7f3320f3f6
parente4487a7626fab2dbe969de424fc3bdcdfed8067e (diff)
increase endpoint certificate timeout
-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 71be06deec5..1f2d503326a 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
@@ -939,7 +939,7 @@ public class InternalStepRunner implements StepRunner {
Duration capacity() { return Duration.ofMinutes(system.isCd() ? 5 : 0); }
Duration endpoint() { return Duration.ofMinutes(15); }
- Duration endpointCertificate() { return Duration.ofMinutes(15); }
+ Duration endpointCertificate() { return Duration.ofMinutes(20); }
Duration tester() { return Duration.ofMinutes(30); }
Duration nodesDown() { return Duration.ofMinutes(system.isCd() ? 20 : 60); }
Duration noNodesDown() { return Duration.ofMinutes(system.isCd() ? 20 : 120); }