You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by er...@apache.org on 2017/12/27 17:07:57 UTC

lucene-solr:master: SOLR-11426: removed infostream debug logging from master

Repository: lucene-solr
Updated Branches:
  refs/heads/master 137675ace -> 6b368c048


SOLR-11426: removed infostream debug logging from master


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

Branch: refs/heads/master
Commit: 6b368c04846fbb7ae769da6bee4506dcbf26c278
Parents: 137675a
Author: Erick Erickson <er...@apache.org>
Authored: Wed Dec 27 09:07:53 2017 -0800
Committer: Erick Erickson <er...@apache.org>
Committed: Wed Dec 27 09:07:53 2017 -0800

----------------------------------------------------------------------
 solr/core/src/test/org/apache/solr/core/TestLazyCores.java | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/6b368c04/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
----------------------------------------------------------------------
diff --git a/solr/core/src/test/org/apache/solr/core/TestLazyCores.java b/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
index afc6b5a..9d03ca4 100644
--- a/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
+++ b/solr/core/src/test/org/apache/solr/core/TestLazyCores.java
@@ -787,8 +787,6 @@ public class TestLazyCores extends SolrTestCaseJ4 {
   // Cores 2, 3, 6, 7, 8, 9 are transient
   @Test
   public void testNoCommit() throws Exception {
-    String infoStream = System.getProperty("solr.tests.infostream");
-    System.setProperty("solr.tests.infostream","true");
     DirectUpdateHandler2.commitOnClose = true;
 
     CoreContainer cc = init();
@@ -837,11 +835,6 @@ public class TestLazyCores extends SolrTestCaseJ4 {
     } finally {
       cc.shutdown();
     }
-    if (infoStream != null) {
-      System.setProperty("solr.tests.infostream", infoStream);
-    } else {
-      System.clearProperty("solr.tests.infostream");
-    }
   }
 
   private void add10(SolrCore core) throws IOException {