In the Makefile celery was running with "celery worker -A celeryapp <...>" that is using -A as an option of the worker sub-command. The support for this usage was removed in Celery 5.0.
How does it address the problem?
The updated usage is to use -A as a global option: "celery -A celeryapp worker <...>"
In the Makefile celery was running with "celery worker -A celeryapp <...>" that is using
-A
as an option of the worker sub-command. The support for this usage was removed in Celery 5.0.The updated usage is to use
-A
as a global option: "celery -A celeryapp worker <...>"No
For Celery v5.1.2: