Celery AttributeError: async error

后端 未结 6 1019
别那么骄傲
别那么骄傲 2021-01-31 13:50

I have RabbitMQ and Celery running locally on my Mac (OS/X 10.13.4), the following code works locally when I run add.delay(x,y):

#!/usr/bin/env python
from celer         


        
6条回答
  •  一整个雨季
    2021-01-31 14:23

    A quick hack fix is to disable the result backend:

    # CELERY_RESULT_BACKEND = 'redis://redis'
    

提交回复
热议问题