Skip to content

Commit

Permalink
spool: Fix another incorrectly merged line
Browse files Browse the repository at this point in the history
  • Loading branch information
gortiz committed Oct 30, 2024
1 parent 760ba5d commit 4cd3229
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public SimpleChildBuilder<MailboxReceiveNode> receiveMailbox(SimpleChildBuilder<
return (stageId, mySchema, myHints) -> {
MailboxSendNode mailbox = childBuilder.build(stageId);
int nextStageId = mailbox.getStageId();
return new MailboxReceiveNode(stageId, mySchema, List.of(), nextStageId, null, null, null, null, false, false,
return new MailboxReceiveNode(stageId, mySchema, nextStageId, null, null, null, null, false, false,
mailbox);
};
}
Expand Down

0 comments on commit 4cd3229

Please sign in to comment.