我有几个工人,听着不同的路线。我将它们导入到应用程序中:
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
的任务的名称如上。我在这里想念什么?