You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ji...@apache.org on 2016/06/30 19:23:31 UTC

[26/26] incubator-geode git commit: GEODE-1571: do not have the post processor blead into other tests

GEODE-1571: do not have the post processor blead into other tests


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

Branch: refs/heads/feature/GEODE-1571
Commit: b37f43932423342d976e1b4f3c0a20c1198197b8
Parents: cd0d11a
Author: Jinmei Liao <ji...@pivotal.io>
Authored: Thu Jun 30 12:22:22 2016 -0700
Committer: Jinmei Liao <ji...@pivotal.io>
Committed: Thu Jun 30 12:22:22 2016 -0700

----------------------------------------------------------------------
 .../gemstone/gemfire/internal/security/GeodeSecurityUtil.java    | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b37f4393/geode-core/src/main/java/com/gemstone/gemfire/internal/security/GeodeSecurityUtil.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/com/gemstone/gemfire/internal/security/GeodeSecurityUtil.java b/geode-core/src/main/java/com/gemstone/gemfire/internal/security/GeodeSecurityUtil.java
index a80e522..3a4edef 100644
--- a/geode-core/src/main/java/com/gemstone/gemfire/internal/security/GeodeSecurityUtil.java
+++ b/geode-core/src/main/java/com/gemstone/gemfire/internal/security/GeodeSecurityUtil.java
@@ -332,6 +332,10 @@ public class GeodeSecurityUtil {
       postProcessor = (PostProcessor) postProcessObject;
       postProcessor.init(securityProps);
     }
+    else{
+      postProcessor = null;
+    }
+
   }
 
   public static Object postProcess(String regionPath, Object key, Object result){