Skip to content

Commit 0852cc0

Browse files
authored
Fix CrossClusterAsyncQueryStopIT testStopQueryLocal test (#123050)
1 parent 6d04251 commit 0852cc0

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,9 +268,6 @@ tests:
268268
- class: org.elasticsearch.smoketest.SmokeTestMonitoringWithSecurityIT
269269
method: testHTTPExporterWithSSL
270270
issue: https://github.com/elastic/elasticsearch/issues/122220
271-
- class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryStopIT
272-
method: testStopQueryLocal
273-
issue: https://github.com/elastic/elasticsearch/issues/121672
274271
- class: org.elasticsearch.blocks.SimpleBlocksIT
275272
method: testConcurrentAddBlock
276273
issue: https://github.com/elastic/elasticsearch/issues/122324

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public void testStopQueryLocal() throws Exception {
156156
try (EsqlQueryResponse asyncResponse = getAsyncResponse(client(), asyncExecutionId)) {
157157
EsqlExecutionInfo executionInfo = asyncResponse.getExecutionInfo();
158158
assertNotNull(executionInfo);
159-
assertThat(executionInfo.isPartial(), is(true));
159+
assertThat(executionInfo.isStopped(), is(true));
160160
}
161161
});
162162
// allow local query to proceed

0 commit comments

Comments
 (0)