How can I delete all pending tasks without knowing the task_id for each task?
task_id
From the docs:
$ celery -A proj purge
or
from proj.celery import app app.control.purge()
(EDIT: Updated with current method.)