Skip to content

Commit

Permalink
fix: _generate_command
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiazi committed Apr 30, 2024
1 parent 9c0311f commit 14f9d1f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dagger/dag_creator/airflow/operator_creators/dbt_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ def _generate_command(self):
command.append(f"--vars='{dbt_vars}'")
if self._create_external_athena_table:
command.append(f"--create_external_athena_table={self._create_external_athena_table}")
command.append(super()._generate_command())

for param_name, param_value in self._template_parameters.items():
command.append(
f"--{param_name}={param_value}"
)
return command

0 comments on commit 14f9d1f

Please sign in to comment.