Skip to content

Commit 69aea62

Browse files
authored
Fix bwc tests by setting KNN_QUERY_BUGFIX_130254 assumed for next compatibility version, as this bug is fixed on Lucene 10 / ES 9.x (#130441)
1 parent 4ff2157 commit 69aea62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/search/SearchFeatures.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public Set<NodeFeature> getFeatures() {
2727
);
2828
public static final NodeFeature INT_SORT_FOR_INT_SHORT_BYTE_FIELDS = new NodeFeature("search.sort.int_sort_for_int_short_byte_fields");
2929
static final NodeFeature MULTI_MATCH_CHECKS_POSITIONS = new NodeFeature("search.multi.match.checks.positions");
30-
private static final NodeFeature KNN_QUERY_BUGFIX_130254 = new NodeFeature("search.knn.query.bugfix.130254");
30+
private static final NodeFeature KNN_QUERY_BUGFIX_130254 = new NodeFeature("search.knn.query.bugfix.130254", true);
3131

3232
@Override
3333
public Set<NodeFeature> getTestFeatures() {

0 commit comments

Comments
 (0)