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 C79EE18727 for ; Wed, 6 May 2015 09:18:24 +0000 (UTC) Received: (qmail 20932 invoked by uid 500); 6 May 2015 09:18:24 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 20901 invoked by uid 500); 6 May 2015 09:18:24 -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 20892 invoked by uid 99); 6 May 2015 09:18:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 May 2015 09:18:24 +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; Wed, 06 May 2015 09:18:16 +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 D54662302A for ; Wed, 6 May 2015 09:17:55 +0000 (UTC) Received: (qmail 19817 invoked by uid 99); 6 May 2015 09:17:55 -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, 06 May 2015 09:17:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A0B56E359E; Wed, 6 May 2015 09:17:55 +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, 06 May 2015 09:18:02 -0000 Message-Id: In-Reply-To: <5285ca70e272406fa262783f43c7045d@git.apache.org> References: <5285ca70e272406fa262783f43c7045d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [8/9] incubator-ignite git commit: # ignite-841 X-Virus-Checked: Checked by ClamAV on apache.org # ignite-841 Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/e1d978b7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/e1d978b7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/e1d978b7 Branch: refs/heads/ignite-841 Commit: e1d978b736c13edf64a26a053130009a9f694ed3 Parents: 0df9ef3 Author: sboikov Authored: Wed May 6 12:13:25 2015 +0300 Committer: sboikov Committed: Wed May 6 12:13:25 2015 +0300 ---------------------------------------------------------------------- .../internal/processors/igfs/IgfsClientCacheSelfTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/e1d978b7/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsClientCacheSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsClientCacheSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsClientCacheSelfTest.java index 9a4043d..d983302 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsClientCacheSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsClientCacheSelfTest.java @@ -31,9 +31,9 @@ import static org.apache.ignite.cache.CacheAtomicityMode.*; import static org.apache.ignite.cache.CacheMode.*; /** - * Test for igfs with incorrect configuration. + * Test for igfs with nodes in client mode (see {@link IgniteConfiguration#setClientMode(boolean)}. */ -public class IgfsClientCacheSelfTest extends IgfsAbstractSelfTest { +public class IgfsClientCacheSelfTest extends IgfsAbstractSelfTest { /** */ private static final TcpDiscoveryIpFinder IP_FINDER = new TcpDiscoveryVmIpFinder(true); @@ -66,7 +66,7 @@ public class IgfsClientCacheSelfTest extends IgfsAbstractSelfTest { protected IgfsSecondaryFileSystem createSecondaryFileSystemStack() throws Exception { Ignite igniteSecondary = G.start(getConfiguration(getTestGridName(0))); - IgfsEx secondaryIgfsImpl = (IgfsEx) igniteSecondary.fileSystem("igfs"); + IgfsEx secondaryIgfsImpl = (IgfsEx)igniteSecondary.fileSystem("igfs"); igfsSecondary = new IgfsExUniversalFileSystemAdapter(secondaryIgfsImpl);