diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index d615d3e54ae..e2c77b703fa 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -510,6 +510,8 @@ Other Changes * SOLR-11068: MOVEREPLICA and REPLACENODE API parameter names are now 'sourceNode' and 'targetNode'. The old names viz. 'fromNode' for MOVEREPLICA and 'source', 'target' for REPLACENODE have been deprecated. (shalin) +* SOLR-11088: Fix sporadic failures of MetricsHandlerTest.testPropertyFilter on jenkins (shalin) + ================== 6.7.0 ================== Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release. diff --git a/solr/core/src/test/org/apache/solr/handler/admin/MetricsHandlerTest.java b/solr/core/src/test/org/apache/solr/handler/admin/MetricsHandlerTest.java index 402cc250565..d7ead6b1b44 100644 --- a/solr/core/src/test/org/apache/solr/handler/admin/MetricsHandlerTest.java +++ b/solr/core/src/test/org/apache/solr/handler/admin/MetricsHandlerTest.java @@ -189,6 +189,8 @@ public class MetricsHandlerTest extends SolrTestCaseJ4 { @Test public void testPropertyFilter() throws Exception { + assertQ(req("*:*"), "//result[@numFound='0']"); + MetricsHandler handler = new MetricsHandler(h.getCoreContainer()); SolrQueryResponse resp = new SolrQueryResponse();