Skip to content

Commit ef1d9f4

Browse files
authored
Disable catchup for import triage DAG (#1305)
Set catchup to False to prevent backfilling missed runs.
1 parent b05668c commit ef1d9f4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

dags/import_triage_dag.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def _wire(tasks: dict[str, object]) -> None:
6262
wire_dependencies=_wire,
6363
pool="triage_import_pool",
6464
schedule_interval="0 0 * * *",
65+
catchup=False, # don't attempt to backfill missed runs that were scheduled
6566
)
6667

6768
globals()[_TRIAGE_CONFIG.dag_id] = build_import_dag(_TRIAGE_CONFIG)

0 commit comments

Comments
 (0)