Skip to content

Commit b2cc9d9

Browse files
authored
Disable the test in release for now (#121051)
1 parent 6718774 commit b2cc9d9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action/CrossClusterAsyncQueryIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
package org.elasticsearch.xpack.esql.action;
99

10+
import org.elasticsearch.Build;
1011
import org.elasticsearch.ElasticsearchException;
1112
import org.elasticsearch.ResourceNotFoundException;
1213
import 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");

0 commit comments

Comments
 (0)