We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It automatically just continues on as its experiments attribute is empty in my case:
idmtools/entities/iplatform.py#wait_till_done_progress:
called originally by: platform.wait_till_done(item=suite)
I believe the fix is to force: item.platform ... to do child/experiment discovery, as that is disabled by default, I believe for performance.
The text was updated successfully, but these errors were encountered:
@ckirkman-IDM What is the error? Do you have simple repro code for this issue? Thanks!
Sorry, something went wrong.
The error is' that suite.experiments is an empty list, so that when you call:
platform.wait_till_done(item=suite)
... no waiting occurs (because suite.experiments is empty, implying all done).
This one line fix, an insertion before line 792 in the above image but in the elif block seems to work:
item.experiments = item.platform.get_children(item_id=item.id, item_type=ItemType.SUITE)
to repro: Try commissioning an experiment, get its suite, and do:
(in my case, I was commissioning 6 experiments in 1 suite and wanted to wait for them all in one batch)
No branches or pull requests
It automatically just continues on as its experiments attribute is empty in my case:
idmtools/entities/iplatform.py#wait_till_done_progress:
called originally by:
platform.wait_till_done(item=suite)
I believe the fix is to force:
item.platform
... to do child/experiment discovery, as that is disabled by default, I believe for performance.
The text was updated successfully, but these errors were encountered: