From f1ac5ffc7e7d8cf8a0a6f8ff425f461d82bfe452 Mon Sep 17 00:00:00 2001 From: bsiggel Date: Sun, 1 Mar 2026 23:46:51 +0000 Subject: [PATCH] Update cron description in Calendar Sync Cron Job for clarity --- 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 31e0cb4..c2594ed 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 (6-field: sec min hour day month weekday) + cron("0 */15 * * * *") # Every 15 minutes at second 0 (6-field: sec min hour day month weekday) ], 'enqueues': ['calendar_sync_all'] }