From e3b6d094d1358a01ceb59ee3d3822258969c4e4c Mon Sep 17 00:00:00 2001 From: Jon Marius Venstad Date: Sun, 19 Jan 2020 17:21:06 +0100 Subject: Higher timeout due to slow CD controllers, for now --- hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4559deddeda..caabdfa1479 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 @@ -126,7 +126,7 @@ public abstract class ControllerHttpClient { /** Returns the Vespa version to compile against, for a hosted Vespa application. This is its lowest runtime version. */ public String compileVersion(ApplicationId id) { return toInspector(send(request(HttpRequest.newBuilder(applicationPath(id.tenant(), id.application())) - .timeout(Duration.ofSeconds(10)), + .timeout(Duration.ofSeconds(20)), GET))) .field("compileVersion").asString(); } -- cgit v1.2.3