You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running zsl application as a celery worker, the arguments given on start are ignored.
Example
Name can be specified for worker with option -n (docs), log level can be specified with option -l (docs). When I run worker (see bellow), given options are ignored.
python app.py celery worker -n name_of_my_incredible_worker -l INFO
The text was updated successfully, but these errors were encountered:
The cause is probably in function run_worker() (on this line) which is called from CeleryCli class method here. The argument given to run_worker function is not passed further to CeleryTaskQueueMainWorker.run method (here)
When running zsl application as a celery worker, the arguments given on start are ignored.
Example
Name can be specified for worker with option
-n
(docs), log level can be specified with option-l
(docs). When I run worker (see bellow), given options are ignored.The text was updated successfully, but these errors were encountered: