GitHub user spmallette opened a pull request:
https://github.com/apache/tinkerpop/pull/857
TINKERPOP-1869 Allowed iterate() after profile()
https://issues.apache.org/jira/browse/TINKERPOP-1869
The `iterate()` method adds a `NoneStep` that was preventing traversals
like `g.V().profile().iterate()`. Not the typical type of traversal you would
do, but it seems like it should be allowed for consistency sake.
All tests pass with `docker/build.sh -t -i`
VOTE +1
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/apache/tinkerpop TINKERPOP-1869
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tinkerpop/pull/857.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #857
----
commit 374b51a3fcb58ee6a7601b32d80ccd1e7a680f6a
Author: Stephen Mallette <spmva@...>
Date: 2018-04-24T23:07:28Z
TINKERPOP-1869 Allowed iterate() after profile()
The iterate() method adds a NoneStep that was preventing traversals like
g.V().profile().iterate(). Not the typical type of traversal you would do, but
it seems like it should be allowed for consistency sake.
----
---