Django - Celery and Background Tasks
Examine this Celery task code snippet. What is the issue with the retry call?
@app.task(bind=True)
def send_report(self):
try:
generate_report()
except Exception as error:
self.retry(error, countdown=60)
