[Django]-Why my celery task is not running?

6👍

Run celery by

celery -A hc worker -B -l info

0👍

You have to run the command python manage.py celery beat to start your periodic task and see the results. Only you can see the print statement results of celery task in your celery shell rather than the normal Django runserver shell.

Leave a comment