summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-09-15 09:01:12 +0200
committerHarald Musum <musum@yahooinc.com>2021-09-15 09:01:12 +0200
commit839f636bd17ba8fabaac8635d7766092e13fc203 (patch)
treebee11bf43da9870262ee1859b949ce5786bfdd76 /config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
parent450695bece5e90021dd4eed4aa82b800ab088ab8 (diff)
GC unused flag and methods
largeRankExpressionLimit() can be used to control use of external rank expressions if needed
Diffstat (limited to 'config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java')
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
index 9690f00a209..4bf20e75a5d 100644
--- a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
+++ b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
@@ -1,4 +1,4 @@
-// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.model.deploy;
import com.google.common.collect.ImmutableList;
@@ -50,7 +50,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
private boolean useAsyncMessageHandlingOnSchedule = false;
private double feedConcurrency = 0.5;
private boolean enableFeedBlockInDistributor = true;
- private boolean useExternalRankExpression = true;
private boolean enforceRankProfileInheritance = true;
private int maxActivationInhibitedOutOfSyncGroups = 0;
private List<TenantSecretStore> tenantSecretStores = Collections.emptyList();
@@ -99,8 +98,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
@Override public int numDistributorStripes() { return numDistributorStripes; }
@Override public boolean allowDisableMtls() { return allowDisableMtls; }
@Override public List<X509Certificate> operatorCertificates() { return operatorCertificates; }
- @Override public boolean useExternalRankExpressions() { return useExternalRankExpression; }
- @Override public boolean distributeExternalRankExpressions() { return useExternalRankExpression; }
@Override public int largeRankExpressionLimit() { return largeRankExpressionLimit; }
@Override public int maxConcurrentMergesPerNode() { return maxConcurrentMergesPerNode; }
@Override public int maxMergeQueueSize() { return maxMergeQueueSize; }
@@ -114,10 +111,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
enforceRankProfileInheritance = value;
return this;
}
- public TestProperties useExternalRankExpression(boolean value) {
- useExternalRankExpression = value;
- return this;
- }
public TestProperties largeRankExpressionLimit(int value) {
largeRankExpressionLimit = value;
return this;