Flask - Background Tasks
Given this Celery Beat schedule snippet, what will happen?
beat_schedule = {
'print-every-10-seconds': {
'task': 'app.print_message',
'schedule': 10,
},
}