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 1331917EE7 for ; Sun, 26 Apr 2015 20:25:51 +0000 (UTC) Received: (qmail 60370 invoked by uid 500); 26 Apr 2015 20:25:51 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 60342 invoked by uid 500); 26 Apr 2015 20:25:50 -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 60333 invoked by uid 99); 26 Apr 2015 20:25:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Apr 2015 20:25:50 +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.191.145.13] (HELO mx1-us-west.apache.org) (54.191.145.13) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Apr 2015 20:25:46 +0000 Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with SMTP id 0DC352580E for ; Sun, 26 Apr 2015 20:25:24 +0000 (UTC) Received: (qmail 60155 invoked by uid 99); 26 Apr 2015 20:25:23 -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; Sun, 26 Apr 2015 20:25:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8B25BE02A2; Sun, 26 Apr 2015 20:25:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sevdokimov@apache.org To: commits@ignite.incubator.apache.org Date: Sun, 26 Apr 2015 20:25:24 -0000 Message-Id: In-Reply-To: <47d0b62671b64f5f8cbb44f97c35bbb0@git.apache.org> References: <47d0b62671b64f5f8cbb44f97c35bbb0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/2] incubator-ignite git commit: # IGNITE-709 Fix exception in RecoveryWorker X-Virus-Checked: Checked by ClamAV on apache.org # IGNITE-709 Fix exception in RecoveryWorker Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/43906627 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/43906627 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/43906627 Branch: refs/heads/ignite-709_2 Commit: 4390662745301b5d1b69c0a77c92505e7c76eefb Parents: f44d03c Author: sevdokimov Authored: Sun Apr 26 17:20:36 2015 +0300 Committer: sevdokimov Committed: Sun Apr 26 17:20:36 2015 +0300 ---------------------------------------------------------------------- .../apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/43906627/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java index c3bfb87..c0a40ee 100644 --- a/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java +++ b/modules/core/src/main/java/org/apache/ignite/spi/communication/tcp/TcpCommunicationSpi.java @@ -2453,7 +2453,7 @@ public class TcpCommunicationSpi extends IgniteSpiAdapter client.release(); } - catch (IgniteCheckedException e) { + catch (IgniteCheckedException | IgniteException e) { if (recoveryDesc.nodeAlive(getSpiContext().node(node.id()))) { if (log.isDebugEnabled()) log.debug("Recovery reconnect failed, will retry " +