Get the result of a task.
(self, task_id)
| 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.""" |