From dc0eba012fde876de654b39507de615ff5fa3f1c Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Mon, 4 Mar 2024 20:43:35 +0100 Subject: [PATCH] adjusted to new log message --- slic/core/acquisition/broker_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slic/core/acquisition/broker_client.py b/slic/core/acquisition/broker_client.py index a3d22e1e..13377cdf 100644 --- a/slic/core/acquisition/broker_client.py +++ b/slic/core/acquisition/broker_client.py @@ -206,7 +206,7 @@ class BrokerClient: line = f.stdout.readline() line = line.decode("utf-8").rstrip() print("\n" + line) - if "Finished. Took " in line and "seconds to complete request." in line: + if "processing request took " in line and " seconds" in line: f.kill() break sp.ok("🥅")