aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Eriksen <andreer@verizonmedia.com>2020-04-03 09:04:55 +0200
committerGitHub <noreply@github.com>2020-04-03 09:04:55 +0200
commit67a91837d6a5cecfd9daf1230f67a36716d05fd2 (patch)
treef00d9fbbe69d5f43a146c69d8861f134b592ddd8
parent69277c69fa92013e95b81e7a210d2d777c60531e (diff)
parent3cefff8e65700046eda08ed55b8a94b5518c1e89 (diff)
Merge pull request #12807 from vespa-engine/andreer/increase-endpoint-certificate-timeout
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); }