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 @@ -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
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