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 BBC951754A for ; Tue, 21 Apr 2015 16:42:46 +0000 (UTC) Received: (qmail 14052 invoked by uid 500); 21 Apr 2015 16:42:46 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 14023 invoked by uid 500); 21 Apr 2015 16:42:46 -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 14008 invoked by uid 99); 21 Apr 2015 16:42:46 -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 16:42:46 +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; Tue, 21 Apr 2015 16:42:41 +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 DFBDB2508B for ; Tue, 21 Apr 2015 16:42:21 +0000 (UTC) Received: (qmail 13138 invoked by uid 99); 21 Apr 2015 16:42:21 -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 16:42:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BBE73E0280; Tue, 21 Apr 2015 16:42:21 +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: Tue, 21 Apr 2015 16:42:44 -0000 Message-Id: <007872838c2d46c39a38e350c3116eba@git.apache.org> In-Reply-To: <9852c3a857a94ecea961ae15e986a0f0@git.apache.org> References: <9852c3a857a94ecea961ae15e986a0f0@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [24/50] incubator-ignite git commit: #ignite-sprint-4: fix GridTcpCommunicationSpiConfigSelfTest. X-Virus-Checked: Checked by ClamAV on apache.org #ignite-sprint-4: fix GridTcpCommunicationSpiConfigSelfTest. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/8adbb9ec Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/8adbb9ec Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/8adbb9ec Branch: refs/heads/ignite-709 Commit: 8adbb9ec424438b1c64639901d52d3683e2d315a Parents: 5049704 Author: ivasilinets Authored: Mon Apr 20 12:22:27 2015 +0300 Committer: ivasilinets Committed: Mon Apr 20 12:22:27 2015 +0300 ---------------------------------------------------------------------- .../communication/tcp/GridTcpCommunicationSpiConfigSelfTest.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/8adbb9ec/modules/core/src/test/java/org/apache/ignite/spi/communication/tcp/GridTcpCommunicationSpiConfigSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/spi/communication/tcp/GridTcpCommunicationSpiConfigSelfTest.java b/modules/core/src/test/java/org/apache/ignite/spi/communication/tcp/GridTcpCommunicationSpiConfigSelfTest.java index 18f8d7b..34fa610 100644 --- a/modules/core/src/test/java/org/apache/ignite/spi/communication/tcp/GridTcpCommunicationSpiConfigSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/spi/communication/tcp/GridTcpCommunicationSpiConfigSelfTest.java @@ -40,7 +40,6 @@ public class GridTcpCommunicationSpiConfigSelfTest extends GridSpiAbstractConfig checkNegativeSpiProperty(new TcpCommunicationSpi(), "reconnectCount", 0); checkNegativeSpiProperty(new TcpCommunicationSpi(), "selectorsCount", 0); checkNegativeSpiProperty(new TcpCommunicationSpi(), "minimumBufferedMessageCount", -1); - checkNegativeSpiProperty(new TcpCommunicationSpi(), "bufferSizeRatio", 0); checkNegativeSpiProperty(new TcpCommunicationSpi(), "connectTimeout", -1); checkNegativeSpiProperty(new TcpCommunicationSpi(), "maxConnectTimeout", -1); checkNegativeSpiProperty(new TcpCommunicationSpi(), "socketWriteTimeout", -1);