Skip to content

Commit e6c2814

Browse files
authored
unmute testDoesNotResolveClosedIndex (#133115)
1 parent 74073dd commit e6c2814

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
@@ -543,9 +543,6 @@ tests:
543543
- class: org.elasticsearch.xpack.search.AsyncSearchErrorTraceIT
544544
method: testAsyncSearchFailingQueryErrorTraceDefault
545545
issue: https://github.com/elastic/elasticsearch/issues/133010
546-
- class: org.elasticsearch.xpack.esql.plugin.IndexResolutionIT
547-
method: testDoesNotResolveClosedIndex
548-
issue: https://github.com/elastic/elasticsearch/issues/133011
549546
- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT
550547
method: test {p0=search/510_range_query_out_of_bounds/Test range query for float field with out of bounds lower limit}
551548
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)