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 D14C717371 for ; Sat, 11 Apr 2015 16:55:12 +0000 (UTC) Received: (qmail 4771 invoked by uid 500); 11 Apr 2015 16:55:12 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 4740 invoked by uid 500); 11 Apr 2015 16:55:12 -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 4728 invoked by uid 99); 11 Apr 2015 16:55:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Apr 2015 16:55:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Sat, 11 Apr 2015 16:55:11 +0000 Received: (qmail 2471 invoked by uid 99); 11 Apr 2015 16:53:36 -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; Sat, 11 Apr 2015 16:53:36 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 637F9E08C2; Sat, 11 Apr 2015 16:53:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: agoncharuk@apache.org To: commits@ignite.incubator.apache.org Date: Sat, 11 Apr 2015 16:53:38 -0000 Message-Id: In-Reply-To: <235f631df20547eab178b2fe30155e0f@git.apache.org> References: <235f631df20547eab178b2fe30155e0f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [03/11] incubator-ignite git commit: # ignite-sprint-3 added ignoreInterrupts for GridDhtColocatedLockFuture (like in GridDhtColocatedLockFuture) X-Virus-Checked: Checked by ClamAV on apache.org # ignite-sprint-3 added ignoreInterrupts for GridDhtColocatedLockFuture (like in GridDhtColocatedLockFuture) Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/d333feb6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/d333feb6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/d333feb6 Branch: refs/heads/ignite-721 Commit: d333feb6bf4a540b63027fe3a67fc2d795c3ed7d Parents: 8cf590e Author: sboikov Authored: Sat Apr 11 12:30:10 2015 +0300 Committer: sboikov Committed: Sat Apr 11 12:30:10 2015 +0300 ---------------------------------------------------------------------- .../internal/processors/cache/local/GridLocalLockFuture.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/d333feb6/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/local/GridLocalLockFuture.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/local/GridLocalLockFuture.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/local/GridLocalLockFuture.java index a6aac64..340eb07 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/local/GridLocalLockFuture.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/local/GridLocalLockFuture.java @@ -111,6 +111,8 @@ public final class GridLocalLockFuture extends GridFutureAdapter this.filter = filter; this.tx = tx; + ignoreInterrupts(true); + threadId = tx == null ? Thread.currentThread().getId() : tx.threadId(); lockVer = tx != null ? tx.xidVersion() : cctx.versions().next();