Skip to content

Commit

Permalink
Merge pull request #23 from damavis/hotfix/fix-params-on-kettle-pan-run
Browse files Browse the repository at this point in the history
Fix params on kettle pan command run.
  • Loading branch information
piffall authored Dec 1, 2022
2 parents 9df34e2 + f79b70c commit 6986351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow_pentaho/operators/kettle.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def execute(self, context): # pylint: disable=unused-argument
arguments.update({'file': self.file})
arguments.update({'norep': 'true'})

self.command_line = conn.build_command('pan', arguments, self.params)
self.command_line = conn.build_command('pan', arguments, self.task_params)
output = self._run_command()

if self.xcom_push_flag:
Expand Down

0 comments on commit 6986351

Please sign in to comment.