From c709bff4df643ec638865ecfaf9f496926962509 Mon Sep 17 00:00:00 2001 From: "ievgen.degtiarenko" Date: Tue, 19 Aug 2025 08:48:57 +0200 Subject: [PATCH] unmute testDoesNotResolveClosedIndex --- muted-tests.yml | 3 --- .../elasticsearch/xpack/esql/plugin/IndexResolutionIT.java | 5 +++++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index 70054a292efb2..bf5bba71c858a 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -552,9 +552,6 @@ tests: - class: org.elasticsearch.xpack.search.AsyncSearchErrorTraceIT method: testAsyncSearchFailingQueryErrorTraceDefault issue: https://github.com/elastic/elasticsearch/issues/133010 -- class: org.elasticsearch.xpack.esql.plugin.IndexResolutionIT - method: testDoesNotResolveClosedIndex - issue: https://github.com/elastic/elasticsearch/issues/133011 - class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT method: test {p0=search/510_range_query_out_of_bounds/Test range query for float field with out of bounds lower limit} issue: https://github.com/elastic/elasticsearch/issues/133012 diff --git a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/IndexResolutionIT.java b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/IndexResolutionIT.java index 00a528911aa09..0ade04683f888 100644 --- a/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/IndexResolutionIT.java +++ b/x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin/IndexResolutionIT.java @@ -19,6 +19,7 @@ import org.elasticsearch.datastreams.DataStreamsPlugin; import org.elasticsearch.index.IndexNotFoundException; import org.elasticsearch.plugins.Plugin; +import org.elasticsearch.test.junit.annotations.TestIssueLogging; import org.elasticsearch.xpack.esql.VerificationException; import org.elasticsearch.xpack.esql.action.AbstractEsqlIntegTestCase; import org.elasticsearch.xpack.esql.action.EsqlQueryResponse; @@ -109,6 +110,10 @@ public void testDoesNotResolveEmptyPattern() { ); } + @TestIssueLogging( + value = "org.elasticsearch.cluster.metadata.MetadataIndexStateService:DEBUG", + issueUrl = "https://github.com/elastic/elasticsearch/issues/133011" + ) public void testDoesNotResolveClosedIndex() { assertAcked(client().admin().indices().prepareCreate("index-1")); indexRandom(true, "index-1", 10);