We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c934dd commit 8d5b067Copy full SHA for 8d5b067
1 file changed
t3/runners/rmg_runner.py
@@ -121,6 +121,9 @@ def check_running_jobs_ids(cluster_soft: str) -> List[str]:
121
Returns:
122
List(str): List of job IDs.
123
"""
124
+ print(f'Checking running jobs IDs on the server...')
125
+ print(f'Cluster software: {cluster_soft}')
126
+ print(f'Check status command: {CHECK_STATUS_COMMAND}')
127
stdout = execute_command(CHECK_STATUS_COMMAND)[0]
128
running_job_ids = parse_running_jobs_ids(stdout, cluster_soft=cluster_soft.lower())
129
print(f'Running job IDs: {running_job_ids}')
0 commit comments