File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
server/src/internalClusterTest/java/org/opensearch/indices Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -81,18 +81,14 @@ public static Collection<Object[]> parameters() {
81
81
new Object [] { Settings .builder ().put (CLUSTER_CONCURRENT_SEGMENT_SEARCH_SETTING .getKey (), true ).build () }
82
82
);
83
83
}
84
- /*
85
- new Object[] { Settings.builder().put(FeatureFlags.PLUGGABLE_CACHE, "true").build() },
86
- new Object[] { Settings.builder().put(FeatureFlags.PLUGGABLE_CACHE, "false").build() }
87
- */
88
84
89
85
@ Override
90
86
protected Settings featureFlagSettings () {
91
- return Settings .builder ()
92
- .put (super . featureFlagSettings ()). put ( FeatureFlags .CONCURRENT_SEGMENT_SEARCH , "true" )
93
- .put (super . featureFlagSettings ()). put ( FeatureFlags .PLUGGABLE_CACHE , "true" )
87
+ return Settings .builder (). put ( super . featureFlagSettings ())
88
+ .put (FeatureFlags .CONCURRENT_SEGMENT_SEARCH , "true" )
89
+ .put (FeatureFlags .PLUGGABLE_CACHE , "true" )
94
90
.build ();
95
- }
91
+ } // For now hardcode TC feature flag as true. Attempt to backport the changes allowing us to parameterize it
96
92
97
93
// One of the primary purposes of the query cache is to cache aggs results
98
94
public void testCacheAggs () throws Exception {
You can’t perform that action at this time.
0 commit comments