fix(cron): Correct calendar sync schedule to run every 15 minutes

This commit is contained in:
2026-02-08 23:13:34 +00:00
parent 7856dd1d68
commit fa45aab5a9

View File

@@ -7,8 +7,8 @@ from .calendar_sync_utils import log_operation
config = {
'type': 'cron',
'name': 'Calendar Sync Cron Job',
'description': 'Führt den Calendar Sync alle 1 Minuten automatisch aus',
'cron': '0 0 31 2 *', # Nie ausführen (31. Februar)
'description': 'Führt den Calendar Sync alle 15 Minuten automatisch aus',
'cron': '*/15 * * * *', # Alle 15 Minuten
'emits': ['calendar_sync_all'],
'flows': ['advoware']
}