From 6c3775fcfc71da77ea9be964fbe274e28993683a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kami=C5=84ski?= Date: Thu, 17 Oct 2024 15:59:11 +0200 Subject: [PATCH] fixes 18 --- scripts/data/client2.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/data/client2.py b/scripts/data/client2.py index 3503ea45..2a96e2d6 100644 --- a/scripts/data/client2.py +++ b/scripts/data/client2.py @@ -160,6 +160,8 @@ def job_consumer(process_job): # If queue is empty for too long, exit the consumer thread print("Queue is empty, consumer is exiting.") break + except Exception as e: + print(f"Error processing job: {e}") def main(start, blocks, step, mode, strategy):