Hello, I am trying to revoke a Pending task in celery without success.
I have tried all this ways:
app.control.revoke(task_id)
revoke(campaign.state_task)
async_result.revoke()
AsyncResult(task_id).revoke()
None of them work. I am using:
celery==3.1.23
django-celery==3.1.17
tenant-schemas-celery==0.1.5
Any idea why this is happening. I can't see any errors when I run those commands.
Thanks for the help.
Cheers