summaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@oath.com>2018-06-25 16:25:15 +0200
committerHåkon Hallingstad <hakon@oath.com>2018-06-25 16:25:15 +0200
commit1f52b8a6fc728aece31a288dc25fbe58632f5277 (patch)
treea55723d6007ed5406fcb2fadc5d49ada2b5d72a6 /orchestrator
parent33e519251f47d83229a88186b09f60562139bcda (diff)
Correct share-remaining-time
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerClientImpl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerClientImpl.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerClientImpl.java
index efbc0cd0fcf..467b534f809 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerClientImpl.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerClientImpl.java
@@ -30,7 +30,7 @@ public class ClusterControllerClientImpl implements ClusterControllerClient{
// timeout(3. request) = T * 0.125
//
// which seems fine
- public static final float SHARE_REMAINING_TIME = 0.6f;
+ public static final float SHARE_REMAINING_TIME = 0.5f;
private final JaxRsStrategy<ClusterControllerJaxRsApi> clusterControllerApi;
private final String clusterName;