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 9580418C85 for ; Wed, 27 May 2015 14:49:19 +0000 (UTC) Received: (qmail 30375 invoked by uid 500); 27 May 2015 14:49:19 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 30343 invoked by uid 500); 27 May 2015 14:49:19 -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 30333 invoked by uid 99); 27 May 2015 14:49:19 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 May 2015 14:49:19 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id D2D3EC91CE for ; Wed, 27 May 2015 14:49:18 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id a6ujacXUy56B for ; Wed, 27 May 2015 14:49:05 +0000 (UTC) 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 D40FF25FA7 for ; Wed, 27 May 2015 14:48:53 +0000 (UTC) Received: (qmail 28268 invoked by uid 99); 27 May 2015 14:48:53 -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; Wed, 27 May 2015 14:48:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id AE5ABE0508; Wed, 27 May 2015 14:48:53 +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: Wed, 27 May 2015 14:49:20 -0000 Message-Id: <1e31649aee2148579bfb086d0d8570ac@git.apache.org> In-Reply-To: <3ac38a18bf544ad4a15c002373f69d3e@git.apache.org> References: <3ac38a18bf544ad4a15c002373f69d3e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [29/38] incubator-ignite git commit: Merge remote-tracking branch 'remotes/origin/ignite-709_2' into ignite-23 Merge remote-tracking branch 'remotes/origin/ignite-709_2' into ignite-23 Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/2b679829 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/2b679829 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/2b679829 Branch: refs/heads/ignite-709_2 Commit: 2b679829e59571f16b3eaffa1c6de1f67c4f0396 Parents: a837fe1 092e8c7 Author: sboikov Authored: Mon May 25 21:50:04 2015 +0300 Committer: sboikov Committed: Mon May 25 21:50:04 2015 +0300 ---------------------------------------------------------------------- .gitignore | 3 +- dev-tools/slurp.sh | 74 +++++++++++ dev-tools/src/main/groovy/jiraslurp.groovy | 132 +++++++++++-------- .../ClientAbstractConnectivitySelfTest.java | 14 ++ .../main/java/org/apache/ignite/Ignition.java | 17 ++- .../org/apache/ignite/cluster/ClusterNode.java | 24 +++- .../configuration/IgniteConfiguration.java | 4 +- .../internal/GridEventConsumeHandler.java | 96 ++++++++++---- .../apache/ignite/internal/IgniteKernal.java | 6 +- .../org/apache/ignite/internal/IgnitionEx.java | 27 ++-- .../internal/interop/InteropException.java | 71 ++++++++++ .../interop/InteropNoCallbackException.java | 50 +++++++ .../ignite/internal/util/IgniteUtils.java | 6 +- .../discovery/tcp/TcpClientDiscoverySpi.java | 88 +++++++++---- .../tcp/TcpClientDiscoverySpiMBean.java | 8 -- .../internal/GridReleaseTypeSelfTest.java | 2 + .../GridDiscoveryManagerAliveCacheSelfTest.java | 5 +- ...pClientDiscoveryMarshallerCheckSelfTest.java | 2 + .../tcp/TcpClientDiscoverySpiSelfTest.java | 2 + .../tcp/TcpDiscoveryConcurrentStartTest.java | 2 + .../tcp/TcpDiscoveryMultiThreadedTest.java | 2 + .../processors/hadoop/v2/HadoopV2Context.java | 10 +- .../testsuites/IgniteHadoopTestSuite.java | 2 +- 23 files changed, 502 insertions(+), 145 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/2b679829/modules/core/src/test/java/org/apache/ignite/internal/managers/discovery/GridDiscoveryManagerAliveCacheSelfTest.java ----------------------------------------------------------------------