aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-api
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2020-03-04 08:11:55 +0100
committerJon Marius Venstad <venstad@gmail.com>2020-03-04 08:11:55 +0100
commiteedb78ca0c0024ba22d749fd5468865e6e5ab2ee (patch)
tree6c5b260977a40b0eee4b4ccb79e1f544e863bf2e /hosted-api
parent3c66bd5825848e3f95452776f274631b2db5f076 (diff)
Match server synch timeout in client
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 2ac35fa1ca4..ec3baf30eae 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(60)),
+ .timeout(Duration.ofMinutes(2)),
GET)));
}