diff --git a/muted-tests.yml b/muted-tests.yml index 63852fe00187e..8ab6e8e8a3600 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -417,9 +417,6 @@ tests: - class: org.elasticsearch.xpack.downsample.ILMDownsampleDisruptionIT method: testILMDownsampleRollingRestart issue: https://github.com/elastic/elasticsearch/issues/126495 -- class: org.elasticsearch.xpack.search.AsyncSearchErrorTraceIT - method: testDataNodeLogsStackTraceWhenErrorTraceFalseOrEmpty - issue: https://github.com/elastic/elasticsearch/issues/126357 - class: org.elasticsearch.smoketest.MlWithSecurityIT method: test {yaml=ml/get_trained_model_stats/Test get stats given trained models} issue: https://github.com/elastic/elasticsearch/issues/126510 diff --git a/x-pack/plugin/async-search/src/internalClusterTest/java/org/elasticsearch/xpack/search/AsyncSearchErrorTraceIT.java b/x-pack/plugin/async-search/src/internalClusterTest/java/org/elasticsearch/xpack/search/AsyncSearchErrorTraceIT.java index 96d1e2c906902..ef05307743a46 100644 --- a/x-pack/plugin/async-search/src/internalClusterTest/java/org/elasticsearch/xpack/search/AsyncSearchErrorTraceIT.java +++ b/x-pack/plugin/async-search/src/internalClusterTest/java/org/elasticsearch/xpack/search/AsyncSearchErrorTraceIT.java @@ -185,7 +185,6 @@ public void testDataNodeDoesNotLogStackTraceWhenErrorTraceTrue() throws IOExcept responseEntity = performRequestAndGetResponseEntityAfterDelay(request, TimeValue.timeValueSeconds(1L)); } - getRestClient().performRequest(searchRequest); mockLog.assertAllExpectationsMatched(); } } @@ -228,7 +227,6 @@ public void testDataNodeLogsStackTraceWhenErrorTraceFalseOrEmpty() throws IOExce responseEntity = performRequestAndGetResponseEntityAfterDelay(request, TimeValue.timeValueSeconds(1L)); } - getRestClient().performRequest(searchRequest); mockLog.assertAllExpectationsMatched(); } }