File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -224,9 +224,6 @@ tests:
224224- class : org.elasticsearch.xpack.esql.action.CrossClusterAsyncEnrichStopIT
225225 method : testEnrichAfterStop
226226 issue : https://github.com/elastic/elasticsearch/issues/120757
227- - class : org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryIT
228- method : testStopQuery
229- issue : https://github.com/elastic/elasticsearch/issues/120767
230227- class : org.elasticsearch.search.fieldcaps.FieldCapabilitiesIT
231228 issue : https://github.com/elastic/elasticsearch/issues/120772
232229- class : org.elasticsearch.xpack.test.rest.XPackRestIT
Original file line number Diff line number Diff line change 77
88package org .elasticsearch .xpack .esql .action ;
99
10+ import org .elasticsearch .Build ;
1011import org .elasticsearch .ElasticsearchException ;
1112import org .elasticsearch .ResourceNotFoundException ;
1213import org .elasticsearch .action .ActionFuture ;
@@ -265,6 +266,7 @@ public void testAsyncQueriesWithLimit0() throws IOException {
265266 }
266267
267268 public void testStopQuery () throws Exception {
269+ assumeTrue ("Pragme does not work in release builds" , Build .current ().isSnapshot ());
268270 Map <String , Object > testClusterInfo = setupClusters (3 );
269271 int localNumShards = (Integer ) testClusterInfo .get ("local.num_shards" );
270272 int remote1NumShards = (Integer ) testClusterInfo .get ("remote1.num_shards" );
You can’t perform that action at this time.
0 commit comments