From aba887ec29758167fbe4f0d61cb6c2bc803e7e7d Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Fri, 4 Jul 2025 17:03:06 -0500 Subject: [PATCH] bug fix: crash on concurrency --- bin/transport | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/transport b/bin/transport index 19b664e..75d3663 100755 --- a/bin/transport +++ b/bin/transport @@ -53,10 +53,6 @@ def wait(jobs): while jobs : jobs = [thread for thread in jobs if thread.is_alive()] time.sleep(1) -def wait (jobs): - while jobs : - jobs = [pthread for pthread in jobs if pthread.is_alive()] - @app_e.command(name="run") def apply (path:Annotated[str,typer.Argument(help="path of the configuration file")], index:int = typer.Option(default= None, help="index of the item of interest, otherwise everything in the file will be processed"),