Update cron description in Calendar Sync Cron Job for clarity

This commit is contained in:
bsiggel
2026-03-01 23:46:51 +00:00
parent 5c204ba16c
commit f1ac5ffc7e

View File

@@ -17,7 +17,7 @@ config = {
'description': 'Runs calendar sync automatically every 15 minutes', 'description': 'Runs calendar sync automatically every 15 minutes',
'flows': ['advoware-calendar-sync'], 'flows': ['advoware-calendar-sync'],
'triggers': [ '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'] 'enqueues': ['calendar_sync_all']
} }