From 2993b26cfd6bffc6c8a190ef4782f1dc37a6294c Mon Sep 17 00:00:00 2001 From: Jon Marius Venstad Date: Tue, 27 Oct 2020 09:29:03 +0100 Subject: Reduce retry period for maven plugins against controller --- hosted-api/src/main/java/ai/vespa/hosted/api/ControllerHttpClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosted-api/src/main') 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); -- cgit v1.2.3