From e104e6d7e4b60fb87b19feaab53dad2e3c29f223 Mon Sep 17 00:00:00 2001 From: Jon Marius Venstad Date: Wed, 4 Mar 2020 07:22:59 +0100 Subject: 1min connection timeout for deployment logs --- hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosted-api') 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))); } -- cgit v1.2.3