Skip to content

Commit

Permalink
update cron
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucile authored and Lucile committed Feb 10, 2025
1 parent 5b6d413 commit 34624fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
SSHGCEOperator,
StartGCEOperator,
)
from jobs.crons import SCHEDULE_DICT

from airflow import DAG
from airflow.models import Param
Expand Down Expand Up @@ -44,7 +45,7 @@
dag = DAG(
DAG_NAME,
default_args=dag_config,
schedule_interval="@daily", # Runs daily
schedule_interval=SCHEDULE_DICT[DAG_NAME], # Runs daily
catchup=False,
params={
"branch": Param(
Expand Down
1 change: 1 addition & 0 deletions orchestration/dags/jobs/crons.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"dev": "0 12 * * 2",
"stg": "0 12 * * 3",
},
"bigquery_export_old_partitions": "0 7 * * *",
"clickhouse_exports": {
"daily": {
"prod": "0 6 * * *",
Expand Down

0 comments on commit 34624fa

Please sign in to comment.