Skip to content

Commit c709bff

Browse files
committed
unmute testDoesNotResolveClosedIndex
1 parent 342f989 commit c709bff

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -552,9 +552,6 @@ tests:
552552
- class: org.elasticsearch.xpack.search.AsyncSearchErrorTraceIT
553553
method: testAsyncSearchFailingQueryErrorTraceDefault
554554
issue: https://github.com/elastic/elasticsearch/issues/133010
555-
- class: org.elasticsearch.xpack.esql.plugin.IndexResolutionIT
556-
method: testDoesNotResolveClosedIndex
557-
issue: https://github.com/elastic/elasticsearch/issues/133011
558555
- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
559556
method: test {p0=search/510_range_query_out_of_bounds/Test range query for float field with out of bounds lower limit}
560557
issue: https://github.com/elastic/elasticsearch/issues/133012

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.elasticsearch.datastreams.DataStreamsPlugin;
2020
import org.elasticsearch.index.IndexNotFoundException;
2121
import org.elasticsearch.plugins.Plugin;
22+
import org.elasticsearch.test.junit.annotations.TestIssueLogging;
2223
import org.elasticsearch.xpack.esql.VerificationException;
2324
import org.elasticsearch.xpack.esql.action.AbstractEsqlIntegTestCase;
2425
import org.elasticsearch.xpack.esql.action.EsqlQueryResponse;
@@ -109,6 +110,10 @@ public void testDoesNotResolveEmptyPattern() {
109110
);
110111
}
111112

113+
@TestIssueLogging(
114+
value = "org.elasticsearch.cluster.metadata.MetadataIndexStateService:DEBUG",
115+
issueUrl = "https://github.com/elastic/elasticsearch/issues/133011"
116+
)
112117
public void testDoesNotResolveClosedIndex() {
113118
assertAcked(client().admin().indices().prepareCreate("index-1"));
114119
indexRandom(true, "index-1", 10);

0 commit comments

Comments
 (0)