一、flask运行在debug模式的时候,celery无法收到flask中发送给celery的异步任务
run.py
if __name__ == ‘__main__‘:
# app.run(host="0.0.0.0", port=8000, debug=True) # 以debug模式运行flask
# 使用debug模式时,celery异步任务不能执行,但定时任务可以执行
app.run(host="0.0.0.0", port=8000)
task.py
from celery import shared_task
@shared_task():
def add(a, b)
c = a + b
return c
# 调用celery的异步任务add函数
add.delay(a=1, b=2)
执行add.delay(a=1, b=2)的时候,在flask的debug模式下就无法执行
原文地址:https://www.cnblogs.com/lanlingshao/p/10044754.html
时间: 2024-11-05 22:45:23