Skip to content

Commit

Permalink
hotfix: update trigger rules to always
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoquintanav committed Feb 2, 2024
1 parent cb673d0 commit d925604
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dags/dbt_test_quality_dset.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
args = {
"email": my_email,
"email_on_failure": True,
"email_on_retry": True,
"email_on_retry": False,
"retries": 1,
"retry_delay": timedelta(minutes=10),
}
Expand Down Expand Up @@ -134,7 +134,7 @@ def dbapi_to_dict(dbapi: str):
mount_tmp_dir=False,
auto_remove=True,
retrieve_output=True,
trigger_rule="one_failed",
trigger_rule="none_failed",
force_pull=True,
)

Expand Down Expand Up @@ -167,7 +167,7 @@ def dbapi_to_dict(dbapi: str):
mount_tmp_dir=False,
auto_remove=True,
retrieve_output=True,
trigger_rule="none_failed",
trigger_rule="always",
force_pull=True,
)

Expand Down

0 comments on commit d925604

Please sign in to comment.