Just ran into this myself. It took a combo of the advice above to get a worker running along with a Django management command that can push stuff to the worker. 1. Specify the broker/backend when you're creating the celery app: `app = Celery('my_app', backend='redis://localhost:63...
发生的事情是,我的broker_url是无效的,所以它被默认为ampq://guest:password而不是ampq://myuser:#...
发生的事情是,我的broker_url是无效的,所以它被默认为ampq://guest:password而不是ampq://myuser:#...
Issue is about the celery python app, which we are currently using with django (not django-celery). Issue can be seen here:https://github.com/celery/celery/blob/master/celery/app/utils.py#L85-L106 My team had a misunderstanding about Celery settings and environment variables (we thought the...
a.创建子进程,父进程退出,一切工作在子进程中执行,形式上脱离了控制终端 b.在子进程中创建新的...