You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
returns1
always. And I don't know how to get a result by task_id.The text was updated successfully, but these errors were encountered: