This commit is contained in:
concordia
2024-06-15 20:45:56 -05:00
parent 94581c908b
commit 5e4c1e2427
2 changed files with 4 additions and 3 deletions

View File

@@ -46,7 +46,6 @@ def launcher(proc: str, name: str, log_path: str) -> None:
sentry.capture_exception()
raise
def join_process(process: Process, timeout: float) -> None:
# Process().join(timeout) will hang due to a python 3 bug: https://bugs.python.org/issue28382
# We have to poll the exitcode instead