aboutsummaryrefslogtreecommitdiffstats
path: root/config-model-api
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@verizonmedia.com>2020-01-26 00:46:51 +0100
committerHåkon Hallingstad <hakon@verizonmedia.com>2020-01-26 00:46:51 +0100
commit7b99c625f39d334638b13f5a083c680e4ee3018b (patch)
treeb8b3422a643f20055e160a63942e924304c667fe /config-model-api
parent3bf181256ef24570f14c977ec37d23b754a7df53 (diff)
Remove use-bucket-space-metric feature flag
The flag controlled config read by the Cluster Controller. Therefore, I have left the ModelContextImpl.Properties method and implementation (now always returning true), but the model has stopped using that method internally, and the config is no longer used in the CC. The field in the fleetcontroller.def is left unchanged and documented as deprecated.
Diffstat (limited to 'config-model-api')
-rw-r--r--config-model-api/src/main/java/com/yahoo/config/model/api/ModelContext.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/config-model-api/src/main/java/com/yahoo/config/model/api/ModelContext.java b/config-model-api/src/main/java/com/yahoo/config/model/api/ModelContext.java
index 81ac02a5400..843bce6de7c 100644
--- a/config-model-api/src/main/java/com/yahoo/config/model/api/ModelContext.java
+++ b/config-model-api/src/main/java/com/yahoo/config/model/api/ModelContext.java
@@ -58,6 +58,7 @@ public interface ModelContext {
default Optional<TlsSecrets> tlsSecrets() { return Optional.empty(); }
default Optional<EndpointCertificateSecrets> endpointCertificateSecrets() { return Optional.empty(); }
double defaultTermwiseLimit();
+ // TODO: Remove once there are no Vespa versions below 7.170
boolean useBucketSpaceMetric();
}