You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "stephen mallette (JIRA)" <ji...@apache.org> on 2017/05/26 15:46:04 UTC

[jira] [Created] (TINKERPOP-1679) Detached side-effects aren't attached when remoted

stephen mallette created TINKERPOP-1679:
-------------------------------------------

             Summary: Detached side-effects aren't attached when remoted
                 Key: TINKERPOP-1679
                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1679
             Project: TinkerPop
          Issue Type: Bug
          Components: language-variant, server
    Affects Versions: 3.2.4
            Reporter: stephen mallette


This problem is exemplified in gremlin-python:

{code}
>>> vFrom = g.V(1).next()
>>> vTo = g.V(6).next()
>>> g.withSideEffect("t",vTo).V(vFrom).as_("f").addE("knows").from_("f").to("t").toList()
{code}

the {{vTo}} doesn't attach when it reaches the server, so when the {{addE()}} gets called you end up with a failure as it tries to add a detached vertex to a graph.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)