Github user dkuppitz commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/830#discussion_r179829888
--- Diff:
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/map/MatchStep.java
---
@@ -362,7 +360,7 @@ private boolean hasPathLabel(final Path path, final
Set<String> labels) {
while (true) {
if (this.first) {
this.first = false;
-
this.initializeMatchAlgorithm(TraversalEngine.Type.STANDARD);
+ this.initializeMatchAlgorithm(true);
--- End diff --
Shouldn't this be `false`?
---