Hello. I hope you're doing well. I have a django project running along with a celery worker for executing bg tasks. The code for starting the worker is in my profile like so:
Web: celery -A config worker --loglevel=info --concurrency=4 & python manage.py migrate && gunicorn config.wsgi --bind 0.0.0.0:$PORT
Now how do I remove all running tasks and restart the worker afresh?