orchestration/exectools.py: fix getting stuck on terminating components
The reason we didn't spot this earlier is that exceptions were swallowed by the call to `asyncio.wait()` in `runners.py:ExperimentBaseRunner.terminate_collect_sims()` when invoking `int_term_kill()`. Instead, we now use `asyncio.gather()`, which forwards exceptions to the calling coroutine.
Showing
Please register or sign in to comment