summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorValerij Fredriksen <freva@users.noreply.github.com>2022-11-07 11:50:31 +0100
committerGitHub <noreply@github.com>2022-11-07 11:50:31 +0100
commit338c241e1df16dd4989f9413d669ca0a946118f3 (patch)
tree11d88ec4fb39c07e3f7f9505641d0bf0a1f8c6c4
parent74f816012f3a580c7f42bbfe7d22feaed331891d (diff)
parentb44b623850adf245c8bd55bda6989c5c8c584912 (diff)
Merge pull request #24776 from vespa-engine/hmusum/increase-proxy-request-timeout
Increase proxy request timeout
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/proxy/ConfigServerRestExecutorImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/proxy/ConfigServerRestExecutorImpl.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/proxy/ConfigServerRestExecutorImpl.java
index 9bea7fb829d..4f4e21d9f25 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/proxy/ConfigServerRestExecutorImpl.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/proxy/ConfigServerRestExecutorImpl.java
@@ -58,7 +58,7 @@ import static com.yahoo.yolean.Exceptions.uncheck;
public class ConfigServerRestExecutorImpl extends AbstractComponent implements ConfigServerRestExecutor {
private static final Logger LOG = Logger.getLogger(ConfigServerRestExecutorImpl.class.getName());
- private static final Duration PROXY_REQUEST_TIMEOUT = Duration.ofSeconds(10);
+ private static final Duration PROXY_REQUEST_TIMEOUT = Duration.ofSeconds(20);
private static final Duration PING_REQUEST_TIMEOUT = Duration.ofMillis(500);
private static final Duration SINGLE_TARGET_WAIT = Duration.ofSeconds(2);
private static final int SINGLE_TARGET_RETRIES = 3;