From 8d5b0677b50fa0b3ae22defd54863868a4c6b5ce Mon Sep 17 00:00:00 2001 From: Alon Grinberg Dana Date: Wed, 4 Dec 2024 14:34:27 +0200 Subject: [PATCH] D2 --- t3/runners/rmg_runner.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/t3/runners/rmg_runner.py b/t3/runners/rmg_runner.py index 4e71c4cc..1d1877c5 100644 --- a/t3/runners/rmg_runner.py +++ b/t3/runners/rmg_runner.py @@ -121,6 +121,9 @@ def check_running_jobs_ids(cluster_soft: str) -> List[str]: Returns: List(str): List of job IDs. """ + print(f'Checking running jobs IDs on the server...') + print(f'Cluster software: {cluster_soft}') + print(f'Check status command: {CHECK_STATUS_COMMAND}') stdout = execute_command(CHECK_STATUS_COMMAND)[0] running_job_ids = parse_running_jobs_ids(stdout, cluster_soft=cluster_soft.lower()) print(f'Running job IDs: {running_job_ids}')