stephen mallette created TINKERPOP-1743:
-------------------------------------------
Summary: LambdaRestrictionStrategy does not catch lambdas passed
to sack()
Key: TINKERPOP-1743
URL: https://issues.apache.org/jira/browse/TINKERPOP-1743
Project: TinkerPop
Issue Type: Bug
Components: process
Affects Versions: 3.1.7
Reporter: stephen mallette
Assignee: Marko A. Rodriguez
{code}
gremlin> g.V().limit(1).map{ System.exit(1) }
The provided traversal contains a lambda step: LambdaMapStep(lambda)
Type ':help' or ':h' for help.
Display stack trace? [yN]n
gremlin> g.withSack(0).V().limit(1).sack{ v,s -> System.exit(1) }
/// nothing
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)