Flask - Background Tasks
Consider this Celery Beat schedule configuration in a Flask app:
What will Celery Beat do when running with this setup?
app.config['beat_schedule'] = {
'notify': {
'task': 'notifications.send_email',
'schedule': 10
}
}What will Celery Beat do when running with this setup?
