Skip to content

Commit

Permalink
removing the oneshot from the daily dbt
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickPassa committed Aug 5, 2024
1 parent eed002c commit 3e3d792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dags/dbt_daily.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def params_check(params=None, **kwargs):
is_full_refresh = params.get("full_refresh")
if is_full_refresh:
kwargs["ti"].xcom_push("dbt_seed_args", "--full-refresh")
kwargs["ti"].xcom_push("dbt_run_args", "--full-refresh --exclude marts.weekly marts.manual")
kwargs["ti"].xcom_push("dbt_run_args", "--full-refresh --exclude marts.weekly marts.manual marts.oneshot")
else:
kwargs["ti"].xcom_push("dbt_seed_args", "")
kwargs["ti"].xcom_push("dbt_run_args", "--select marts.daily legacy.daily ephemeral staging")
Expand Down

0 comments on commit 3e3d792

Please sign in to comment.