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 3F5C310CAC for ; Fri, 17 Apr 2015 11:01:33 +0000 (UTC) Received: (qmail 65612 invoked by uid 500); 17 Apr 2015 11:01:33 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 65581 invoked by uid 500); 17 Apr 2015 11:01:33 -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 65572 invoked by uid 99); 17 Apr 2015 11:01:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Apr 2015 11:01:33 +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; Fri, 17 Apr 2015 11:01:28 +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 C6D7B453FA for ; Fri, 17 Apr 2015 11:01:07 +0000 (UTC) Received: (qmail 65108 invoked by uid 99); 17 Apr 2015 11:01:07 -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; Fri, 17 Apr 2015 11:01:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E63D4E054C; Fri, 17 Apr 2015 11:01:06 +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 Date: Fri, 17 Apr 2015 11:01:14 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [09/17] incubator-ignite git commit: #ignite-743: fix marshalling. X-Virus-Checked: Checked by ClamAV on apache.org #ignite-743: fix marshalling. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/a4143aa3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/a4143aa3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/a4143aa3 Branch: refs/heads/ignite-sprint-4 Commit: a4143aa35bf0704e16320d8631820901b151680b Parents: 8f8119e Author: ivasilinets Authored: Wed Apr 15 11:57:47 2015 +0300 Committer: ivasilinets Committed: Wed Apr 15 11:57:47 2015 +0300 ---------------------------------------------------------------------- .../apache/ignite/internal/processors/cache/IgniteCacheProxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/a4143aa3/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteCacheProxy.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteCacheProxy.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteCacheProxy.java index 3424c2c..2cda18a 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteCacheProxy.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteCacheProxy.java @@ -827,7 +827,7 @@ public class IgniteCacheProxy extends AsyncSupportAdapter prj0 = new GridCacheProjectionImpl<>( - (CacheProjection)(prj != null ? prj : lockFreeCache), + (CacheProjection)(prj != null ? prj : lockFreeCache.delegate()), (GridCacheContext)context(), prj != null && prj.skipStore(), prj != null ? prj.subjectId() : null,