我已经使用pip install flower为我的django应用程序安装了flower。我使用./manage.py celery flower --port=5555命令启动它。在那之后我得到了下面的输出。

[I 150324 16:40:47 command:106] Visit me at http://localhost:5555
[I 150324 16:40:47 command:107] Broker: django://localhost//
[E 150324 16:40:47 state:52] Dashboard and worker management commands are not available for 'sql' transport
[I 150324 16:40:47 mixins:225] Connected to django://localhost//

但是,我无法在UI中看到任何任务和工作线程。请给我指点。

最佳答案

您正在使用django db作为代理。Flower不支持sql传输。

关于python - Flower UI不显示 celery worker 和任务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29238318/

10-09 03:07