How does one check whether a task is running in celery (specifically, I\'m using celery-django)?
I\'ve read the documentation, and I\'ve googled, but I can\'t see a
Just use this API from celery FAQ
result = app.AsyncResult(task_id)
This works fine.