How To Configure And Run Celerybeat
I am just getting started with celery,trying to run a periodic task. Configured *rabbitmq** added celeryconfig.py. And added following code in tasks.py: from celery.decorators impo
Solution 1:
Add CELERY_IMPORTS=("tasks",)
to your celeryconfig.py then run celerybeat.
Post a Comment for "How To Configure And Run Celerybeat"