Github user okram commented on the pull request: https://github.com/apache/incubator-tinkerpop/pull/230#issuecomment-186262915 Here is what I get in the console for that query: ``` gremlin> g = TinkerFactory.createModern().traversal().withComputer() ==>graphtraversalsource[tinkergraph[vertices:6 edges:6], tinkergraphcomputer] gremlin> g.V().hasLabel("software").has("name", "ripple").pageRank(1.0).by(__.inE("created")).times(1).by("priors").in("created").union(__.both(), __.identity()).valueMap("name", "priors") ==>[name:[marko], priors:[0.0]] ==>[name:[lop], priors:[0.0]] ==>[name:[josh], priors:[1.0]] ==>[name:[ripple], priors:[0.0]] gremlin> ``` If someone who has a fail can tell me what they get that would help. However, again, I just commented out the test for now so I don't waste a day sitting here on an inanity.
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---