mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 18:58:04 +00:00
[airflow
] Argument fail_stop
in DAG has been renamed as fail_fast
(AIR302
) (#15633)
## Summary argument `fail_stop` in DAG has been renamed as `fail_fast` (AIR302) ## Test Plan a test fixture has been updated
This commit is contained in:
parent
fbb06fe0ac
commit
1e053531b6
3 changed files with 155 additions and 126 deletions
|
@ -26,6 +26,8 @@ def sla_callback(*arg, **kwargs):
|
|||
|
||||
DAG(dag_id="class_sla_callback", sla_miss_callback=sla_callback)
|
||||
|
||||
DAG(dag_id="class_sla_callback", fail_stop=True)
|
||||
|
||||
|
||||
@dag(schedule="0 * * * *")
|
||||
def decorator_schedule():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue