From ac8939660a463ed5fe90696a6a8960e98fa4c630 Mon Sep 17 00:00:00 2001 From: Tristan Date: Sat, 25 May 2024 18:48:17 -0400 Subject: [PATCH] Update finder.py added print for log --- finder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/finder.py b/finder.py index 934eda4..dae993a 100644 --- a/finder.py +++ b/finder.py @@ -103,6 +103,7 @@ def get_worker_id(ssh_client): match = re.search(r'"user" *: *"[^.]*\.(\w+)"', config_content) if match: worker_id = match.group(1) + print(f"Got Worker ID: ", worker_id) else: worker_id = "Unknown" except Exception as e: