You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/01/05 23:54:53 UTC

[21/50] incubator-tinkerpop git commit: HDFS wasn't getting the right directory and the assert fails.

HDFS wasn't getting the right directory and the assert fails.


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

Branch: refs/heads/TINKERPOP-1033
Commit: eb7321184004a8a89445c8072e4a3ce3385e8e46
Parents: 2c07233
Author: Nghia Tran <ng...@gmail.com>
Authored: Wed Dec 23 15:22:15 2015 -0500
Committer: Nghia Tran <ng...@gmail.com>
Committed: Wed Dec 23 15:22:15 2015 -0500

----------------------------------------------------------------------
 .../main/java/org/apache/tinkerpop/gremlin/GraphManager.java    | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/eb732118/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphManager.java
----------------------------------------------------------------------
diff --git a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphManager.java b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphManager.java
index 0c93e58..39524bf 100644
--- a/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphManager.java
+++ b/gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/GraphManager.java
@@ -86,6 +86,11 @@ public class GraphManager {
         }
 
         @Override
+        public String getWorkingDirectory() {
+            return innerGraphProvider.getWorkingDirectory();
+        }
+
+        @Override
         public GraphTraversalSource traversal(final Graph graph) {
             return innerGraphProvider.traversal(graph);
         }