Skip to content

Commit 25ff120

Browse files
committed
[exec] Fixed multiple event inputs
1 parent 333646c commit 25ff120

File tree

1 file changed

+1
-1
lines changed
  • exec/src/klio_exec/commands

1 file changed

+1
-1
lines changed

exec/src/klio_exec/commands/run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ def _generate_pcoll_per_input(self, pipeline):
485485
to_process = MultiInputPCollTuple(**input_name_to_input_pcolls)
486486
to_pass_thru = (
487487
multi_to_pass_thru
488-
| "Merge multi-input pass-thrus" >> beam.Flatten()
488+
| "Merge multi-input pass-thrus" >> beam.Flatten(pipeline=pipeline)
489489
)
490490
return to_process, to_pass_thru
491491

0 commit comments

Comments
 (0)