Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2D0AA17C96 for ; Tue, 21 Apr 2015 14:31:05 +0000 (UTC) Received: (qmail 47810 invoked by uid 500); 21 Apr 2015 14:31:05 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 47779 invoked by uid 500); 21 Apr 2015 14:31:05 -0000 Mailing-List: contact commits-help@ignite.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.incubator.apache.org Delivered-To: mailing list commits@ignite.incubator.apache.org Received: (qmail 47770 invoked by uid 99); 21 Apr 2015 14:31:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2015 14:31:05 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [54.164.171.186] (HELO mx1-us-east.apache.org) (54.164.171.186) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2015 14:31:00 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-east.apache.org (ASF Mail Server at mx1-us-east.apache.org) with SMTP id 2698F43E6F for ; Tue, 21 Apr 2015 14:30:40 +0000 (UTC) Received: (qmail 46782 invoked by uid 99); 21 Apr 2015 14:30:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 Apr 2015 14:30:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8B092DFF7E; Tue, 21 Apr 2015 14:30:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-ignite git commit: ignite-656: bug fixing Date: Tue, 21 Apr 2015 14:30:39 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-656 950c2bda7 -> 924580e9d ignite-656: bug fixing Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/924580e9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/924580e9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/924580e9 Branch: refs/heads/ignite-656 Commit: 924580e9d25af9436c28dd4878b4bbbd51f82a26 Parents: 950c2bd Author: Denis Magda Authored: Tue Apr 21 17:30:30 2015 +0300 Committer: Denis Magda Committed: Tue Apr 21 17:30:30 2015 +0300 ---------------------------------------------------------------------- .../apache/ignite/internal/processors/cache/GridCacheAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/924580e9/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java index bc1b5ef..c246661 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java @@ -1891,7 +1891,7 @@ public abstract class GridCacheAdapter implements IgniteInternalCache>(keys) { @Override public IgniteInternalFuture> op(IgniteTxLocalAdapter tx) { - return tx.getAllAsync(ctx, keys, null, deserializePortable, skipVals, false, readThrough); + return tx.getAllAsync(ctx, keys, null, deserializePortable, skipVals, false, !readThrough); } }); }