You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mk...@apache.org on 2016/10/03 07:20:28 UTC

lucene-solr:master: SOLR-9554: clear statics to fix the test failure

Repository: lucene-solr
Updated Branches:
  refs/heads/master 632d12987 -> cc4c78022


SOLR-9554: clear statics to fix the test failure

Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/cc4c7802
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/cc4c7802
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/cc4c7802

Branch: refs/heads/master
Commit: cc4c780227e999339e083cababff96912c4fbb53
Parents: 632d129
Author: Mikhail Khludnev <mk...@apache.org>
Authored: Mon Oct 3 10:18:45 2016 +0300
Committer: Mikhail Khludnev <mk...@apache.org>
Committed: Mon Oct 3 10:19:20 2016 +0300

----------------------------------------------------------------------
 .../test/org/apache/solr/schema/TestManagedSchemaThreadSafety.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/cc4c7802/solr/core/src/test/org/apache/solr/schema/TestManagedSchemaThreadSafety.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/schema/TestManagedSchemaThreadSafety.java b/solr/core/src/test/org/apache/solr/schema/TestManagedSchemaThreadSafety.java
index 043632e..e4a5c48 100644
--- a/solr/core/src/test/org/apache/solr/schema/TestManagedSchemaThreadSafety.java
+++ b/solr/core/src/test/org/apache/solr/schema/TestManagedSchemaThreadSafety.java
@@ -96,6 +96,8 @@ public class TestManagedSchemaThreadSafety extends SolrTestCaseJ4 {
   @AfterClass
   public static void stopZkServer() throws Exception {
     zkServer.shutdown();
+    zkServer = null;
+    loaderPath = null;
   }
 
   @Test