You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/06/11 14:28:24 UTC

incubator-ignite git commit: #sberb-27: revert

Repository: incubator-ignite
Updated Branches:
  refs/heads/sberb-27 0773efd02 -> 003dd6cc3


#sberb-27: revert


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

Branch: refs/heads/sberb-27
Commit: 003dd6cc34d97e1e5825b41ae8a57aef34012d72
Parents: 0773efd
Author: ivasilinets <iv...@gridgain.com>
Authored: Thu Jun 11 15:28:19 2015 +0300
Committer: ivasilinets <iv...@gridgain.com>
Committed: Thu Jun 11 15:28:19 2015 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/cache/GridCacheProcessor.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/003dd6cc/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
index 694a478..5582ba7 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
@@ -2285,8 +2285,7 @@ public class GridCacheProcessor extends GridProcessorAdapter {
             if (!isLocAff && isRmtAff && locCfg.getAtomicityMode() == TRANSACTIONAL) {
                 checkStore = locAttr.storeFactoryClassName() != null;
 
-                if (locAttr.storeFactoryClassName() == null && rmtAttr.storeFactoryClassName() != null &&
-                    isRmtAff && isLocAff)
+                if (locAttr.storeFactoryClassName() == null && rmtAttr.storeFactoryClassName() != null)
                     desc.updatesAllowed(false);
             }
             else