Skip to content

Commit

Permalink
#713 reduce concurrency and no catchup
Browse files Browse the repository at this point in the history
  • Loading branch information
radumas authored Oct 4, 2023
1 parent b84e016 commit 36b6832
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dags/pull_wys.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ def custom_fail_slack_alert(context: dict) -> str:

@dag(dag_id = dag_name,
default_args=default_args,
catchup=False,
max_active_runs=5,
schedule_interval='0 15 * * *' # Run at 3 PM local time every day
)
def pull_wys_dag():
Expand Down Expand Up @@ -118,4 +120,4 @@ def read_google_sheets():
pull_schedules()
read_google_sheets()

pull_wys_dag()
pull_wys_dag()

0 comments on commit 36b6832

Please sign in to comment.