Flask - Background Tasks
Identify the error in this Celery Beat configuration:
beat_schedule = {
'task1': {
'task': 'app.task1',
'schedule': crontab(minute='*/5')
},
'task2': {
'task': 'app.task2',
'schedule': '10',
}
}