aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2021-03-29 09:03:44 +0200
committerGitHub <noreply@github.com>2021-03-29 09:03:44 +0200
commitc9532f9bcdb999a1aec1a5829630e0c9a0bec897 (patch)
tree900266d422d8c7c89df344d9607e5d6dd2b9be40 /controller-server
parenta3b2ae2a910f60bbd212bd6c126492a9933372c6 (diff)
Retry out of capacity in CD for 15 minutes
Diffstat (limited to 'controller-server')
-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 dd94c025444..d3b8aa2a201 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
@@ -954,7 +954,7 @@ public class InternalStepRunner implements StepRunner {
return new Timeouts(system);
}
- Duration capacity() { return Duration.ofMinutes(system.isCd() ? 5 : 0); }
+ Duration capacity() { return Duration.ofMinutes(system.isCd() ? 15 : 0); }
Duration endpoint() { return Duration.ofMinutes(15); }
Duration endpointCertificate() { return Duration.ofMinutes(20); }
Duration tester() { return Duration.ofMinutes(30); }