Django - Celery and Background Tasks
Given this Celery Beat schedule snippet in Django settings:
beat_schedule = {
'print-time': {
'task': 'app.tasks.print_time',
'schedule': crontab(minute='*/15')
}
}
What will happen when Celery Beat and worker run?