File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/plugin Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1919import org .elasticsearch .datastreams .DataStreamsPlugin ;
2020import org .elasticsearch .index .IndexNotFoundException ;
2121import org .elasticsearch .plugins .Plugin ;
22+ import org .elasticsearch .test .junit .annotations .TestIssueLogging ;
2223import org .elasticsearch .xpack .esql .VerificationException ;
2324import org .elasticsearch .xpack .esql .action .AbstractEsqlIntegTestCase ;
2425import 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 );
You can’t perform that action at this time.
0 commit comments