summaryrefslogtreecommitdiffstats
path: root/hosted-api
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2020-10-27 09:29:03 +0100
committerJon Marius Venstad <venstad@gmail.com>2020-10-27 09:29:03 +0100
commit2993b26cfd6bffc6c8a190ef4782f1dc37a6294c (patch)
treeaae53aa1044d5d1f3f1149336b25823b3dc36b0d /hosted-api
parent704493e3c14440a943b5e008ad1aeb076c2a8189 (diff)
Reduce retry period for maven plugins against controller
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 42d1b802094..06e2174dbb5 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
@@ -289,7 +289,7 @@ public abstract class ControllerHttpClient {
if (attempt < 10)
try {
- Thread.sleep(100 << attempt);
+ Thread.sleep(10 << attempt);
}
catch (InterruptedException f) {
throw new RuntimeException(f);