How can I test if a task (task_id) is still processed in celery? I have the following scenario:
- Start a task in a Django view
- Store the BaseAsyncResult in the session
- Shutdown the celery daemon (hard) so the task is not processed anymore
- Check if the task is 'dead'
Any ideas? Can a lookup all task being processed by celery and check if mine is still there?