4👍
✅
You most likely forgot to run at least one Celery worker process. To do so, execute the following in the shell: celery worker -A proj.celery -c 4 -l DEBUG
(here I assumed your Celery application is defined in proj/celery.py as you have Celery('proj')
in there)
Source:stackexchange.com