From 102be14636acc67b46e84205eaf1afdbd3ae756b Mon Sep 17 00:00:00 2001 From: MrWaradana Date: Thu, 24 Apr 2025 13:40:53 +0700 Subject: [PATCH] refactor: time area utc to gmt (utc +7) --- dags/fetch_maximo_daily.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dags/fetch_maximo_daily.py b/dags/fetch_maximo_daily.py index 92ee654..501572c 100644 --- a/dags/fetch_maximo_daily.py +++ b/dags/fetch_maximo_daily.py @@ -151,8 +151,8 @@ dag = DAG( "fetch_daily_maximo_data", default_args=default_args, description="A DAG to fetch data from Maximo API endpoint asynchronously on a daily schedule", - # Schedule to run daily at 21:00 - schedule_interval="0 21 * * *", + # Schedule to run daily at 21:00 GMT + schedule_interval="0 14 * * *", # UTC (14:00 WIB) start_date=days_ago(1), tags=["maximo", "api", "fetch", "continuous", "daily", "async"], catchup=False,