Django - Celery and Background Tasks
You defined this schedule in your Django settings:
beat_schedule = {
'cleanup-task': {
'task': 'app.tasks.cleanup',
'schedule': crontab(minute=0, hour='*')
}
}
But the task never runs. What is the most likely cause?