Repository: geode
Updated Branches:
  refs/heads/feature/GEODE-3062 3ff9725f1 -> 443ff8aeb


Fixup


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

Branch: refs/heads/feature/GEODE-3062
Commit: 443ff8aebbdc7825aebfe39ed1014c3d18f4cee6
Parents: 3ff9725
Author: Kirk Lund <[email protected]>
Authored: Tue Jun 13 09:25:08 2017 -0700
Committer: Kirk Lund <[email protected]>
Committed: Tue Jun 13 09:25:08 2017 -0700

----------------------------------------------------------------------
 .../java/org/apache/geode/internal/cache/GemFireCacheImpl.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/443ff8ae/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
----------------------------------------------------------------------
diff --git 
a/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
 
b/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
index 780810d..c503c40 100755
--- 
a/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
+++ 
b/geode-core/src/main/java/org/apache/geode/internal/cache/GemFireCacheImpl.java
@@ -324,7 +324,7 @@ public class GemFireCacheImpl implements InternalCache, 
InternalClientCache, Has
 
   private static final Pattern DOUBLE_BACKSLASH = Pattern.compile("\\\\");
 
-  private final ConfigurationResponse configurationResponse;
+  private volatile ConfigurationResponse configurationResponse;
 
   /** To test MAX_QUERY_EXECUTION_TIME option. */
   public int testMaxQueryExecutionTime = -1;
@@ -1211,6 +1211,7 @@ public class GemFireCacheImpl implements InternalCache, 
InternalClientCache, Has
           // I don't want init to throw an exception that came from the close.
           // I want it to throw the original exception that came from 
initializeDeclarativeCache.
         }
+        this.configurationResponse = null;
       }
     }
 

Reply via email to