fixes related to automation and celery schedules

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-18 12:22:27 +00:00
parent 3a65fb919a
commit 879ef6ff06
9 changed files with 358 additions and 27 deletions

View File

@@ -57,7 +57,7 @@ app.conf.beat_schedule = {
# Automation Tasks
'check-scheduled-automations': {
'task': 'automation.check_scheduled_automations',
'schedule': crontab(minute=0), # Every hour at :00
'schedule': crontab(minute='0,15,30,45'), # Every 15 minutes
},
# Publishing Scheduler Tasks
'schedule-approved-content': {