File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/action Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -125,9 +125,6 @@ tests:
125125- class : org.elasticsearch.xpack.ml.integration.RegressionIT
126126 method : testTwoJobsWithSameRandomizeSeedUseSameTrainingSet
127127 issue : https://github.com/elastic/elasticsearch/issues/117805
128- - class : org.elasticsearch.xpack.esql.action.EsqlActionTaskIT
129- method : testCancelRequestWhenFailingFetchingPages
130- issue : https://github.com/elastic/elasticsearch/issues/118193
131128- class : org.elasticsearch.packaging.test.ArchiveTests
132129 method : test44AutoConfigurationNotTriggeredOnNotWriteableConfDir
133130 issue : https://github.com/elastic/elasticsearch/issues/118208
Original file line number Diff line number Diff line change @@ -462,7 +462,9 @@ protected void doRun() throws Exception {
462462 }
463463 Exception failure = expectThrows (Exception .class , () -> future .actionGet ().close ());
464464 EsqlTestUtils .assertEsqlFailure (failure );
465- assertThat (failure .getMessage (), containsString ("failed to fetch pages" ));
465+ Throwable cause = ExceptionsHelper .unwrap (failure , IOException .class );
466+ assertNotNull (cause );
467+ assertThat (cause .getMessage (), containsString ("failed to fetch pages" ));
466468 // If we proceed without waiting for pages, we might cancel the main request before starting the data-node request.
467469 // As a result, the exchange sinks on data-nodes won't be removed until the inactive_timeout elapses, which is
468470 // longer than the assertBusy timeout.
You can’t perform that action at this time.
0 commit comments