You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2019/12/04 03:43:24 UTC

[lucene-solr] branch master updated: SOLR-14002: fix another static leak in test

This is an automated email from the ASF dual-hosted git repository.

rmuir pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new becc16f  SOLR-14002: fix another static leak in test
becc16f is described below

commit becc16fb282c41b475b7ef90a30ed3372e7bfa79
Author: Robert Muir <rm...@apache.org>
AuthorDate: Tue Dec 3 22:43:11 2019 -0500

    SOLR-14002: fix another static leak in test
---
 .../src/test/org/apache/solr/cloud/autoscaling/IndexSizeTriggerTest.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/solr/core/src/test/org/apache/solr/cloud/autoscaling/IndexSizeTriggerTest.java b/solr/core/src/test/org/apache/solr/cloud/autoscaling/IndexSizeTriggerTest.java
index d54cf0b..ee0b688 100644
--- a/solr/core/src/test/org/apache/solr/cloud/autoscaling/IndexSizeTriggerTest.java
+++ b/solr/core/src/test/org/apache/solr/cloud/autoscaling/IndexSizeTriggerTest.java
@@ -153,6 +153,7 @@ public class IndexSizeTriggerTest extends SolrCloudTestCase {
     }
     solrClient = null;
     cloudManager = null;
+    loader = null;
   }
 
   @Test