Github user okram commented on the issue:

    https://github.com/apache/tinkerpop/pull/546
  
    So the problem I was having was related to the interplay between 
`PathRetractionStrategy` and `MatchPredicateStrategy`. You can't have 
`PathRetractionStrategy` without `MatchPredicateStrategy`.
    
    The test that fails is:
    
    
    ```
    g.V().match(
      as("a").in("sungBy").as("b"),
      as("a").in("writtenBy").as("c"),
      as("b").out("writtenBy").as("d"))
        .where(as("c").out("sungBy").as("d"))
        .where(as("d").has("name", "Garcia"));
    ```
    
    If I take out `MatchPredicateStrategy` in the TinkerPop computer suite and 
only have `PathRetractionStrategy`, the test fails.
    
    If you could figure out how to make it so this dependency doesn't exist, 
that would be great. Again, this is a `GraphComputer` execution (and it also 
happens with `GraphActors`).


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to