Skip to content

Commit 096155b

Browse files
committed
fix version
1 parent f864c0f commit 096155b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/RequestIndexFilteringIT.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,9 @@ protected void assertQueryResult(Map<String, Object> result, Matcher<?> columnMa
142142
}
143143

144144
private static boolean checkVersion(org.elasticsearch.Version version) {
145-
return version.onOrAfter(Version.fromString("9.1.0"))
146-
|| (version.onOrAfter(Version.fromString("8.19.0")) && version.before(Version.fromString("9.0.0")));
145+
return version.onOrAfter(Version.fromString("9.1.0"));
146+
// TODO: enable this when ported to 8.x
147+
// || (version.onOrAfter(Version.fromString("8.19.0")) && version.before(Version.fromString("9.0.0")));
147148
}
148149

149150
// We need a separate test since remote missing indices and local missing indices now work differently

0 commit comments

Comments
 (0)