Celery启动定时任务遇到报错

Celery启动定时任务遇到报错

报错信息

[2021-04-08 22:50:21,746: ERROR/MainProcess] Received unregistered task of type ‘tasks.add’.
The message has been ignored and discarded.

Did you remember to import the module containing this task?
Or maybe you’re using relative imports?

Please see
http://docs.celeryq.org/en/latest/internals/protocol.html
for more information.

The full contents of the message body was:
b’[[16, 16], {}, {“callbacks”: null, “errbacks”: null, “chain”: null, “chord”: null}]’ (83b)
Traceback (most recent call last):
File “c:\users\user\appdata\local\programs\python\python38\lib\site-packages\celery\worker\consumer\consumer.py”, line 555, in on_task_received
strategy = strategies[type_]
KeyError: ‘tasks.add’

解决办法

 修改任务装饰器,使用函数具体路径作为装饰器参数,而不是使用任意参数!

我的project目录结构:
在这里插入图片描述

修改前:
@app.task(name=“test123”)
def add(x, y):
print(’==============’)
return x + y

修改后:
@app.task(name=“celery_project.tasks.add”)
def add(x, y):
print(’==============’)
return x + y

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值