summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-06-22 19:15:36 +0200
committerGitHub <noreply@github.com>2022-06-22 19:15:36 +0200
commit1242ec5b569d86c90045151fc2def817fce6e530 (patch)
tree02598e0c2be03f16f637d4b55acacb03550ef2fb /config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
parent31ebdd12ecef0aea384176ed882a12b611480866 (diff)
parent764071efb34fdb6a2a843a837c45d2d2ebe741c0 (diff)
Merge pull request #23207 from vespa-engine/arnej/avoid-rankingExpression-flagv8.7.17
stop using feature flag avoidRenamingSummaryFeatures
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.java7
1 files changed, 0 insertions, 7 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 3e12b5c86e3..e78343b5db0 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
@@ -74,7 +74,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
private boolean persistenceThrottlingOfMergeFeedOps = true;
private boolean useV8GeoPositions = true;
private List<String> environmentVariables = List.of();
- private boolean avoidRenamingSummaryFeatures = true;
private boolean enableBitVectors = false;
private boolean loadCodeAsHugePages = false;
private boolean sharedStringRepoNoReclaim = false;
@@ -131,7 +130,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
@Override public boolean persistenceThrottlingOfMergeFeedOps() { return persistenceThrottlingOfMergeFeedOps; }
@Override public boolean useV8GeoPositions() { return useV8GeoPositions; }
@Override public List<String> environmentVariables() { return environmentVariables; }
- @Override public boolean avoidRenamingSummaryFeatures() { return this.avoidRenamingSummaryFeatures; }
@Override public boolean enableBitVectors() { return this.enableBitVectors; }
@Override public Architecture adminClusterArchitecture() { return adminClusterNodeResourcesArchitecture; }
@Override public boolean sharedStringRepoNoReclaim() { return sharedStringRepoNoReclaim; }
@@ -351,11 +349,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
return this;
}
- public TestProperties setAvoidRenamingSummaryFeatures(boolean value) {
- this.avoidRenamingSummaryFeatures = value;
- return this;
- }
-
public TestProperties setEnableBitVectors(boolean value) {
this.enableBitVectors = value;
return this;