Skip to content

Commit

Permalink
only let one task of determine_latest_zarr_ecmwf run at once. (#791)
Browse files Browse the repository at this point in the history
Co-authored-by: reckt32 <[email protected]>
  • Loading branch information
reckt32 and reckt32 authored Feb 17, 2025
1 parent 4420fa2 commit d7adb1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/modules/services/airflow/dags/india/nwp-dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"start_date": datetime.now(tz=timezone.utc) - timedelta(hours=1.5),
"retries": 1,
"retry_delay": timedelta(minutes=1),
"max_active_runs": 10,
"max_active_runs": 1,
"concurrency": 10,
"max_active_tasks": 10,
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/services/airflow/dags/uk/nwp-dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"start_date": datetime.now(tz=timezone.utc) - timedelta(hours=0.5),
"retries": 1,
"retry_delay": timedelta(minutes=1),
"max_active_runs": 10,
"max_active_runs": 1,
"concurrency": 10,
"max_active_tasks": 10,
}
Expand Down

0 comments on commit d7adb1a

Please sign in to comment.