Stephen Mallette created TINKERPOP-2706:
-------------------------------------------
Summary: Traversal clone() not resetting the close state
Key: TINKERPOP-2706
URL: https://issues.apache.org/jira/browse/TINKERPOP-2706
Project: TinkerPop
Issue Type: Bug
Components: process
Affects Versions: 3.4.13
Reporter: Stephen Mallette
Prior to last release {{clone()}} would allow you to "reuse" a traversal:
{code:java}
gremlin> t = g.V().out()
==>v[3]
==>v[2]
==>v[4]
==>v[5]
==>v[3]
==>v[3]
gremlin> t.clone()
gremlin> {code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)