Checklist
Related Issues and Possible Duplicates
Related Issues
Possible Duplicates
Description
Long command [1] to looking for Celery worker:
$ # - If you don't have pkill use:
$ # ps auxww | grep 'celery worker' | awk '{print $2}' | xargs kill
Suggestions
Simplify long command to use awk only:
$ # - If you don't have pkill use:
$ # ps auxww | awk '/celery worker/ {print $2}' | xargs kill
[1] https://docs.celeryproject.org/en/master/faq.html
Checklist
for similar or identical bug reports.
for existing proposed fixes.
to find out if the bug was already fixed in the master branch.
(If there are none, check this box anyway).
Related Issues and Possible Duplicates
Related Issues
Possible Duplicates
Description
Long command [1] to looking for Celery worker:
Suggestions
Simplify long command to use
awkonly:[1] https://docs.celeryproject.org/en/master/faq.html