Django celery Revoke not terminating the task
i have a django celery on on my project and i have set everything and working well but i want to be able too terminate a tasks after it start processing.eg i backup my database through backend tasks and any time i can decide to cancel the tasks so it can terminate the process but when i use
from project.celery import app res = app.control.terminate(task_id=task_id
this is just returning None without teminating the task. the task still keep running. i have also use revoke which is still the same i am using this doc celery
is there anyway to terminate it or i am missing so setting?