Make stop script more stable..

This commit is contained in:
Joachim Meyer 2025-03-25 09:11:13 +01:00
parent e7f54aa1b7
commit 1f97d3f817

View File

@ -76,6 +76,7 @@ def get_entered_current_status(arrayId, jobId, startTime):
return history[0]['EnteredCurrentStatus'] return history[0]['EnteredCurrentStatus']
querys = subprocess.run( querys = subprocess.run(
["ssh", conduit + ".cs.uni-saarland.de", "condor_q", "-json", condor_job_id], capture_output=True, text=True).stdout ["ssh", conduit + ".cs.uni-saarland.de", "condor_q", "-json", condor_job_id], capture_output=True, text=True).stdout
if len(querys) > 0:
query = json.loads(querys) query = json.loads(querys)
if len(query) > 0: if len(query) > 0:
return query[0]['EnteredCurrentStatus'] return query[0]['EnteredCurrentStatus']