Skip to content

Commit bb3713f

Browse files
committed
update dag intervals
1 parent 02277ad commit bb3713f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airflow/dags/sl_data_etl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
@dag(
3131
dag_id="sl_data_etl",
3232
start_date=start_date,
33-
schedule="@daily",
33+
schedule="30 9 * * *",
3434
catchup=False,
3535
is_paused_upon_creation=False,
3636
)

airflow/dags/update_noaa_station_inventory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def update_station_inventory(db, station_inventory, station, data_mapping):
5252
"update_noaa_station_inventory",
5353
default_args=default_args,
5454
description="Cycle through NOAA COOPS station list and append any new stations and inventory data to postgis table",
55-
schedule="@daily",
55+
schedule="0 6 * * *",
5656
catchup=False,
5757
is_paused_upon_creation=False,
5858
) as dag:

0 commit comments

Comments
 (0)