You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by zh...@apache.org on 2016/03/10 23:12:32 UTC

incubator-geode git commit: GEODE-589: revoke the previous change of DistributedTestCase

Repository: incubator-geode
Updated Branches:
  refs/heads/develop f486b700c -> 374d2f435


GEODE-589: revoke the previous change of DistributedTestCase

The fix of GEODE-1052 for DistributedTestCase.java part is not necessary.
And it caused side-effect to ClientMembershipDUnitTest.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/374d2f43
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/374d2f43
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/374d2f43

Branch: refs/heads/develop
Commit: 374d2f435ef5c291ebd3c3a4573110cb1298f290
Parents: f486b70
Author: zhouxh <gz...@pivotal.io>
Authored: Wed Mar 9 15:11:19 2016 -0800
Committer: zhouxh <gz...@pivotal.io>
Committed: Thu Mar 10 14:11:38 2016 -0800

----------------------------------------------------------------------
 .../com/gemstone/gemfire/test/dunit/DistributedTestCase.java     | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/374d2f43/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
----------------------------------------------------------------------
diff --git a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
index 1203570..c7227a2 100755
--- a/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
+++ b/geode-core/src/test/java/com/gemstone/gemfire/test/dunit/DistributedTestCase.java
@@ -241,11 +241,7 @@ public abstract class DistributedTestCase extends TestCase implements java.io.Se
    * @since 3.0
    */
   public Properties getDistributedSystemProperties() {
-    String logLevel = System.getProperty("logLevel");
     Properties props = new Properties();
-    if (logLevel != null) {
-      props.setProperty("log-level", logLevel);
-    }
     return props;
   }