MCPcopy
hub / github.com/celery/celery / get_result

Method get_result

celery/backends/base.py:669–671  ·  view source on GitHub ↗

Get the result of a task.

(self, task_id)

Source from the content-addressed store, hash-verified

667 return self.get_task_meta(task_id).get('traceback')
668
669 def get_result(self, task_id):
670 """Get the result of a task."""
671 return self.get_task_meta(task_id).get('result')
672
673 def get_children(self, task_id):
674 """Get the list of subtasks sent by a task."""

Callers 15

test_correct_resultMethod · 0.80
test_mark_as_doneMethod · 0.80
test_is_pickledMethod · 0.80
test_mark_as_failureMethod · 0.80
test_mark_as_doneMethod · 0.80
test_is_pickledMethod · 0.80

Calls 2

get_task_metaMethod · 0.95
getMethod · 0.45

Tested by 15

test_correct_resultMethod · 0.64
test_mark_as_doneMethod · 0.64
test_is_pickledMethod · 0.64
test_mark_as_failureMethod · 0.64
test_mark_as_doneMethod · 0.64
test_is_pickledMethod · 0.64