You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/05/06 14:16:16 UTC

[07/12] incubator-ignite git commit: # ignite-841

# 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 <sb...@gridgain.com>
Authored: Wed May 6 12:13:25 2015 +0300
Committer: sboikov <sb...@gridgain.com>
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);