You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/08/27 00:54:39 UTC

[24/50] [abbrv] tinkerpop git commit: created a TraversalSideEffects class in traversal.py that RemoteTraversalSideEffects inherits from.

created a TraversalSideEffects class in traversal.py that RemoteTraversalSideEffects inherits from.


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

Branch: refs/heads/master
Commit: 2804e455ee13374b85a84f327abe252320448072
Parents: 5d446f3
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu Aug 25 13:19:13 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu Aug 25 13:19:13 2016 -0600

----------------------------------------------------------------------
 .../src/main/jython/gremlin_python/driver/remote_connection.py     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2804e455/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py b/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py
index a659ebc..dbb0e83 100644
--- a/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py
+++ b/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py
@@ -43,7 +43,7 @@ class RemoteConnection(object):
     @abc.abstractmethod
     def submit(self, bytecode):
         print "sending " + bytecode + " to GremlinServer..."
-        return RemoteTraversal(iter([]), {})
+        return RemoteTraversal(iter([]), TraversalSideEffects())
 
 
 class RemoteTraversal(Traversal):