-
Notifications
You must be signed in to change notification settings - Fork 22
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
Use command_index when calling get_exec_batch_results #548
Conversation
@@ -77,9 +77,9 @@ async def test_run_blender( | |||
await all_sent.wait_for_result(timeout=120) | |||
logger.info("All tasks sent") | |||
|
|||
await all_computed.wait_for_result(timeout=30) | |||
await all_computed.wait_for_result(timeout=120) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure this change is okay, the time between the moment the last task is sent and the moment the last task is computed should not be that long.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know, but it seems that sometimes it takes more than 30s to render the image and send it back. I had to run the test again multiple times without this change.
logger.info("All tasks sent") | ||
|
||
await all_computed.wait_for_result(timeout=60) | ||
await all_computed.wait_for_result(timeout=120) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See my comment for test_run_blender.py
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, though I'm not convinced about increasing some of the timeouts (that much).
No description provided.