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
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
app.backend.get_result(result.id)
AsyncResult.get()