aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2020-03-04 07:22:59 +0100
committerGitHub <noreply@github.com>2020-03-04 07:22:59 +0100
commite104e6d7e4b60fb87b19feaab53dad2e3c29f223 (patch)
tree879b6673245a47dfaef63aed6c38b3c8769bedd6 /hosted-api
parent359c5b79b75681c058a1a9987733f545ce7af71a (diff)
1min connection timeout for deployment logs
Diffstat (limited to 'hosted-api')
-rw-r--r--hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java b/hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java
index 79c11cf86de..2ac35fa1ca4 100644
--- a/hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java
+++ b/hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java
@@ -148,7 +148,7 @@ public abstract class ControllerHttpClient {
/** Returns the sorted list of log entries after the given after from the deployment job of the given ids. */
public DeploymentLog deploymentLog(ApplicationId id, ZoneId zone, long run, long after) {
return toDeploymentLog(send(request(HttpRequest.newBuilder(runPath(id, zone, run, after))
- .timeout(Duration.ofSeconds(10)),
+ .timeout(Duration.ofSeconds(60)),
GET)));
}