Celery中的自动任务路由无法正常工作

时间:2019-03-06 19:40:52

标签: python celery

我有几个工人,听着不同的路线。我将它们导入到应用程序中:

from SlackStore import registra, cuantos
from cuentacomandos import cuenta

以这种方式定义应用程序,然后声明路由

app = Celery('client', broker='amqp://')

app.conf.task_routes = {  "SlackStore.*" : { 'queue': 'rutauno' },
                          "cuentacomandos.*" : { 'queue': 'ruta33' }
}

使用registra.delay等调用对象。应用程序日志中带有celery inspect registered -A SlackStore的任务的名称如上。我在这里想念什么?

0 个答案:

没有答案