fix(cron): Correct calendar sync schedule to run every 15 minutes
This commit is contained in:
@@ -7,8 +7,8 @@ from .calendar_sync_utils import log_operation
|
|||||||
config = {
|
config = {
|
||||||
'type': 'cron',
|
'type': 'cron',
|
||||||
'name': 'Calendar Sync Cron Job',
|
'name': 'Calendar Sync Cron Job',
|
||||||
'description': 'Führt den Calendar Sync alle 1 Minuten automatisch aus',
|
'description': 'Führt den Calendar Sync alle 15 Minuten automatisch aus',
|
||||||
'cron': '0 0 31 2 *', # Nie ausführen (31. Februar)
|
'cron': '*/15 * * * *', # Alle 15 Minuten
|
||||||
'emits': ['calendar_sync_all'],
|
'emits': ['calendar_sync_all'],
|
||||||
'flows': ['advoware']
|
'flows': ['advoware']
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user