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 B411C17AE9 for ; Sat, 2 May 2015 19:53:55 +0000 (UTC) Received: (qmail 85643 invoked by uid 500); 2 May 2015 19:53:55 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 85593 invoked by uid 500); 2 May 2015 19:53:55 -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 85511 invoked by uid 99); 2 May 2015 19:53:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 May 2015 19:53:54 +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; Sat, 02 May 2015 19:53:50 +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 A0912285DB for ; Sat, 2 May 2015 19:12:03 +0000 (UTC) Received: (qmail 45054 invoked by uid 99); 2 May 2015 13:45: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; Sat, 02 May 2015 13:45:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CF187E17CB; Sat, 2 May 2015 13:45:22 +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: Sat, 02 May 2015 13:45:22 -0000 Message-Id: <7339a33ab2644aaca57c6dfed84274d4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] incubator-ignite git commit: # IGNITE-709 Delete incorrect test. X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-ignite Updated Branches: refs/heads/ignite-709_2 f915629f8 -> 71bf90983 # IGNITE-709 Delete incorrect test. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/b09865ab Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/b09865ab Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/b09865ab Branch: refs/heads/ignite-709_2 Commit: b09865abc9805fcde980748f818980a8b2bf5ae6 Parents: f915629 Author: sevdokimov Authored: Fri May 1 15:28:10 2015 +0300 Committer: sevdokimov Committed: Fri May 1 15:28:10 2015 +0300 ---------------------------------------------------------------------- ...acheTcpClientDiscoveryMultiThreadedTest.java | 29 -------------------- 1 file changed, 29 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/b09865ab/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java index 1abd318..fc7660a 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheTcpClientDiscoveryMultiThreadedTest.java @@ -161,35 +161,6 @@ public class GridCacheTcpClientDiscoveryMultiThreadedTest extends GridCacheAbstr /** * @throws Exception If failed. */ - public void testCacheWithServerNodesRestart() throws Exception { - srvNodesCnt = 1; - clientNodesCnt = 1; - - startServerNodes(); - - client = true; - - Ignite client = startGrid(srvNodesCnt); - - checkTopology(gridCount()); - - IgniteCache cache = client.cache(null); - - performSimpleOperationsOnCache(cache); - - // Restart server nodes, client node should reconnect automatically. - stopServerNodes(); - - startServerNodes(); - - checkTopology(gridCount()); - - performSimpleOperationsOnCache(cache); - } - - /** - * @throws Exception If failed. - */ private void startServerNodes() throws Exception { client = false;