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/04/11 04:35:07 UTC

geode git commit: fix-4

Repository: geode
Updated Branches:
  refs/heads/feature/GEM-1353 b59370051 -> c4e40ce4b


fix-4


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

Branch: refs/heads/feature/GEM-1353
Commit: c4e40ce4b3e7b5374fbea8857464da668e60fc6c
Parents: b593700
Author: zhouxh <gz...@pivotal.io>
Authored: Mon Apr 10 21:34:35 2017 -0700
Committer: zhouxh <gz...@pivotal.io>
Committed: Mon Apr 10 21:34:35 2017 -0700

----------------------------------------------------------------------
 .../org/apache/geode/internal/cache/LocalRegionDataView.java   | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/c4e40ce4/geode-core/src/main/java/org/apache/geode/internal/cache/LocalRegionDataView.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/LocalRegionDataView.java b/geode-core/src/main/java/org/apache/geode/internal/cache/LocalRegionDataView.java
index 6d415d5..080c15c 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/cache/LocalRegionDataView.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/LocalRegionDataView.java
@@ -314,9 +314,6 @@ public class LocalRegionDataView implements InternalDataView {
     // BR & DR's putAll
     long token = -1;
     try {
-      if (region instanceof DistributedRegion) {
-        token = putallOp.startOperation();
-      }
       region.postPutAllSend(putallOp, successfulPuts);
       region.postPutAllFireEvents(putallOp, successfulPuts);
     } finally {
@@ -339,9 +336,6 @@ public class LocalRegionDataView implements InternalDataView {
     // BR, DR's removeAll
     long token = -1;
     try {
-      if (region instanceof DistributedRegion) {
-        token = op.startOperation();
-      }
       region.postRemoveAllSend(op, successfulOps);
       region.postRemoveAllFireEvents(op, successfulOps);
     } finally {