Skip to content

Commit b2728f2

Browse files
committed
Fix group execution plan building
1 parent 9c82cdc commit b2728f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/github/hedgehog1029/frame/dispatcher/pipeline/GroupPipeline.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ public List<String> getCompletions(List<String> current, Namespace namespace) {
7474
@Override
7575
public List<ExecutionPlan> getExecutionPlans() {
7676
return pipelines.values().stream()
77-
.flatMap(pipeline -> pipeline.getExecutionPlans().stream())
78-
.map(plan -> plan.withPrepended(new ArgumentNode.Literal(getPrimaryAlias())))
77+
.flatMap(pipeline -> pipeline.getExecutionPlans().stream()
78+
.map(plan -> plan.withPrepended(new ArgumentNode.Literal(pipeline.getPrimaryAlias()))))
7979
.collect(Collectors.toList());
8080
}
8181

0 commit comments

Comments
 (0)