RuntimeError: Never call result.get() within a task Celery
问题 I am using celery to send a task to remote server and trying to get the result back. The state of task is constantly updated using update_state method on remote server. I am sending task using app.send_task('task_name') getting results of celery task is a blocking call and i don't want my django app to wait for result and timeout. So i tried running another celery task for getting results. @app.task(ignore_result=True) def catpure_res(task_id): task_obj = AsyncResult(task_id) task_obj.get(on