Django - Celery and Background Tasks
You wrote:
Why might this code never print the result?
result = AsyncResult(task_id)
if result.status == 'DONE':
print(result.result)Why might this code never print the result?
