From d73ecf1d6aa6d8fce6e44d2ac6ee595e7b91ccef Mon Sep 17 00:00:00 2001 From: Werner Van Geit Date: Thu, 17 Oct 2024 10:17:37 +0200 Subject: [PATCH] Fix error with timeout happens --- docker_scripts/parallelrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker_scripts/parallelrunner.py b/docker_scripts/parallelrunner.py index cdb5827..aabae9f 100755 --- a/docker_scripts/parallelrunner.py +++ b/docker_scripts/parallelrunner.py @@ -486,7 +486,7 @@ def map_func(batch_with_uuid, trial_number=1): f"trial {trial_number}, retrying " ) output_batch = map_func( - batch, trial_number=trial_number + 1 + batch_with_uuid, trial_number=trial_number + 1 ) return output_batch