IGNITE-426 Fixed tests.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b59d02df Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b59d02df Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b59d02df Branch: refs/heads/ignite-426-2-reb Commit: b59d02dfd767f71fbb7ff6ca746584e8c80c3baa Parents: ef4a8ac Author: nikolay_tikhonov <[email protected]> Authored: Fri Oct 23 13:36:37 2015 +0300 Committer: nikolay_tikhonov <[email protected]> Committed: Wed Oct 28 15:24:36 2015 +0300 ---------------------------------------------------------------------- .../ignite/internal/processors/cache/GridCacheMapEntry.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/b59d02df/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheMapEntry.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheMapEntry.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheMapEntry.java index 81b81e3..abed98d 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheMapEntry.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheMapEntry.java @@ -1188,7 +1188,7 @@ public abstract class GridCacheMapEntry extends GridMetadataAwareAdapter impleme } if (cctx.isLocal() || cctx.isReplicated() || - (!isNear() && !(tx != null && !tx.onePhaseCommit() && !tx.local()))) + (!isNear() && !(tx != null && tx.onePhaseCommit() && !tx.local()))) cctx.continuousQueries().onEntryUpdated(this, key, val, old, tx.local(), false, updateIdx0, topVer); cctx.dataStructures().onEntryUpdated(key, false); @@ -1364,7 +1364,7 @@ public abstract class GridCacheMapEntry extends GridMetadataAwareAdapter impleme } if (cctx.isLocal() || cctx.isReplicated() || - (!isNear() && !(tx != null && !tx.onePhaseCommit() && !tx.local()))) + (!isNear() && !(tx != null && tx.onePhaseCommit() && !tx.local()))) cctx.continuousQueries().onEntryUpdated(this, key, null, old, tx.local(), false, updateIdx0, topVer); cctx.dataStructures().onEntryUpdated(key, true);
