aiotasks icon indicating copy to clipboard operation
aiotasks copied to clipboard

Is it possible to get task id?

Open polosatyi opened this issue 6 years ago • 1 comments

Hi, thank you very much for the project! I have a question. It's working with celery: task_id = celery.send_task('task_name') Celery send_task returns id and I can use it in other place to get result. For example: result = celery.AsyncResult(task_id) I tried with aiotasks, but was not successful. task_id = await send_task("task_name") Aiotasks send_task returns 1 always. And I don't know how to get a result by task_id.

polosatyi avatar Oct 20 '17 15:10 polosatyi

Hi. Not currently. The project is still in a very early state

cr0hn avatar Dec 27 '17 09:12 cr0hn