Skip to content

Commit

Permalink
[exec] Fixed multiple event inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
gfalcone committed Jan 3, 2022
1 parent 758c80d commit 0a6bebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exec/src/klio_exec/commands/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def _generate_pcoll_per_input(self, pipeline):
to_process = MultiInputPCollTuple(**input_name_to_input_pcolls)
to_pass_thru = (
multi_to_pass_thru
| "Merge multi-input pass-thrus" >> beam.Flatten()
| "Merge multi-input pass-thrus" >> beam.Flatten(pipeline=pipeline)
)
return to_process, to_pass_thru

Expand Down

0 comments on commit 0a6bebd

Please sign in to comment.