You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/08/15 07:38:46 UTC

[17/30] ignite git commit: IGNITE-3647 IGFS: Local secondary: Implement listPaths() and listFiles() operations - fix typo at assert

IGNITE-3647 IGFS: Local secondary: Implement listPaths() and listFiles() operations - fix typo at assert


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e471c739
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e471c739
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e471c739

Branch: refs/heads/ignite-1926
Commit: e471c7395a0b491c0a200e6c51620d2b12a76672
Parents: d15f65c
Author: tledkov-gridgain <tl...@gridgain.com>
Authored: Thu Aug 11 18:28:49 2016 +0300
Committer: tledkov-gridgain <tl...@gridgain.com>
Committed: Thu Aug 11 18:28:49 2016 +0300

----------------------------------------------------------------------
 .../org/apache/ignite/hadoop/fs/LocalIgfsSecondaryFileSystem.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/e471c739/modules/hadoop/src/main/java/org/apache/ignite/hadoop/fs/LocalIgfsSecondaryFileSystem.java
----------------------------------------------------------------------
diff --git a/modules/hadoop/src/main/java/org/apache/ignite/hadoop/fs/LocalIgfsSecondaryFileSystem.java b/modules/hadoop/src/main/java/org/apache/ignite/hadoop/fs/LocalIgfsSecondaryFileSystem.java
index c26ab25..1435f1f 100644
--- a/modules/hadoop/src/main/java/org/apache/ignite/hadoop/fs/LocalIgfsSecondaryFileSystem.java
+++ b/modules/hadoop/src/main/java/org/apache/ignite/hadoop/fs/LocalIgfsSecondaryFileSystem.java
@@ -597,7 +597,7 @@ public class LocalIgfsSecondaryFileSystem implements IgfsSecondaryFileSystem, Li
 
             path = path.substring(workDir.length(), path.length());
 
-            assert !path.startsWith("/") : "Path is not located in the work directory [workDir=" + workDir +
+            assert path.startsWith("/") : "Path is not located in the work directory [workDir=" + workDir +
                 "path=" + f + ']';
         }