From 07409520630181fe5cb032584e56e9c2c8831c77 Mon Sep 17 00:00:00 2001 From: bsiggel Date: Sun, 1 Mar 2026 23:47:36 +0000 Subject: [PATCH] Fix cron expression in Calendar Sync Cron Job to trigger every 15 minutes --- steps/advoware_cal_sync/calendar_sync_cron_step.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steps/advoware_cal_sync/calendar_sync_cron_step.py b/steps/advoware_cal_sync/calendar_sync_cron_step.py index c2594ed..f69cd28 100644 --- a/steps/advoware_cal_sync/calendar_sync_cron_step.py +++ b/steps/advoware_cal_sync/calendar_sync_cron_step.py @@ -17,7 +17,7 @@ config = { 'description': 'Runs calendar sync automatically every 15 minutes', 'flows': ['advoware-calendar-sync'], 'triggers': [ - cron("0 */15 * * * *") # Every 15 minutes at second 0 (6-field: sec min hour day month weekday) + cron("*/15 * * * * *") # Every 15 minutes at second 0 (6-field: sec min hour day month weekday) ], 'enqueues': ['calendar_sync_all'] }