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 2017/08/11 17:17:53 UTC

geode git commit: fix

Repository: geode
Updated Branches:
  refs/heads/feature/GEODE-3304 53e27cf21 -> e90bd752a


fix


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

Branch: refs/heads/feature/GEODE-3304
Commit: e90bd752ae30b084ca8b7a26914c577c438d0082
Parents: 53e27cf
Author: zhouxh <gz...@pivotal.io>
Authored: Fri Aug 11 10:16:26 2017 -0700
Committer: zhouxh <gz...@pivotal.io>
Committed: Fri Aug 11 10:16:26 2017 -0700

----------------------------------------------------------------------
 .../geode/internal/cache/PartitionedRegionDataStore.java    | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/e90bd752/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java b/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java
index 8662edc..95e6598 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/PartitionedRegionDataStore.java
@@ -2885,10 +2885,11 @@ public class PartitionedRegionDataStore implements HasCachePerfStats {
             grab = pr.getDataStore().grabFreeBucketRecursively(bucketId, pr, moveSource,
                 forceCreation, replaceOffineData, isRebalance, creationRequestor, isDiskRecovery);
           } catch (RegionDestroyedException rde) {
-            logger.info(
-                "Creating colocated child bucket region " + this.partitionedRegion.getFullPath()
-                    + " bucketId=" + bucketId + " failed, but not to stop create parent bucket.",
-                rde);
+            if (logger.isDebugEnabled()) {
+              logger.debug("Failed to grab, colocated region for bucketId = {}{}{} is destroyed.",
+                  this.partitionedRegion.getPRId(), PartitionedRegion.BUCKET_ID_SEPARATOR,
+                  bucketId);
+            }
           }
           if (!grab.nowExists()) {
             if (logger.isDebugEnabled()) {