Celery error : result.get times out

后端 未结 4 832
既然无缘
既然无缘 2021-01-13 06:19

I\'ve installed Celery and I\'m trying to test it with the Celery First Steps Doc.

I tried using both Redis and RabbitMQ as brokers and backends, but I can\'t get th

4条回答
  •  情话喂你
    2021-01-13 06:36

    Using app.backend.get_result(result.id) to instead of AsyncResult.get() since AsyncResult.get() will block until the task status become ready, however the task has already run completed

提交回复
热议问题