-
-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to block a task until it's finished ? #426
Comments
First you need to start the loop and the broker. Try this: @broker.task(task_name="process_video")
async def process_video(video_id: uuid.UUID):
"""Main task to process a YouTube video."""
print('WAITING')
await asyncio.sleep(10)
print("DONE WAITING")
return
async def async_main() -> None:
await broker.startup()
process_task = await process_video.kiq(video_id=uuid.uuid4())
await process_task.wait_result()
print("DONE")
await broker.shutdown()
if __name__ == "__main__":
asyncio.run(async_main()) |
@enodllew Yes, it's been done, but for the sake of simplicity I did not put it there. The task is working nicely, I just want a wait to wait before going further in my code. |
Ah, I see, sry. Then I don't quite understand what kind of result you're expecting. I hope someone else will be able to help you. |
No worries. My problem is that I was thinking that Edit: I've added this : r = await process_task.wait_result(with_logs=True)
print(f"Task execution took: {r.execution_time} seconds.") And I got Task execution took: 0.0 seconds. But actually the task is running in background. So I wonder what can be the problem. |
@sorasful, |
@s3rius Thank you for the quick answer, and it was exactly this. Maybe we should emphasize this in the documentation or put a warning when we use a I'm closing this anyway, thanks again! |
I guess warning would be more appropriate. Let me make an issue for that. |
Hi there!
I was trying to wait for a task to finish before going further, and I thought that
wait_result()
was for this purpose. But it seems that it does not block. Here's my setup .The thing is that my task is indeed triggered and takes 10 seconds. But I see the "DONE" print immediately, I would know if it's possible to block it until it's done, I tried to setup timeout params but it's the same.
Thanks for your time !
The text was updated successfully, but these errors were encountered: