背景 最近因项目需要,学习任务队列Celery的用法,跟着官网写Demo,出现如题错误,最终在github的Issues里找到解决办法,记录如下. 场景还原 本地环境如下: Windows 7 Python 3.6.7 Celery 4.1.0 代码tasks.py: from celery import Celery app = Celery('tasks', broker='redis://:xxxx@xxx.xxx.xxx.xx:6379/0') @app.task def add(x,…