Skip to content

Commit 0a6bebd

Browse files
committed
[exec] Fixed multiple event inputs
1 parent 758c80d commit 0a6bebd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • exec/src/klio_exec/commands

exec/src/klio_exec/commands/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def _generate_pcoll_per_input(self, pipeline):
476476
to_process = MultiInputPCollTuple(**input_name_to_input_pcolls)
477477
to_pass_thru = (
478478
multi_to_pass_thru
479-
| "Merge multi-input pass-thrus" >> beam.Flatten()
479+
| "Merge multi-input pass-thrus" >> beam.Flatten(pipeline=pipeline)
480480
)
481481
return to_process, to_pass_thru
482482

0 commit comments

Comments
 (0)