Inaccurate celery task status
Getting the status of a celery task
task_result = AsyncResult(task_id, app=celery_app)
works correctly if you have a result backend configured and tasks are defined with @app.task(bind=True). The result would be STARTED; SUCCESS; FAILURE; RETRY; RE...
blog.danwald.me2 min read