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,9 +76,10 @@ 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
query = json.loads(querys) if len(querys) > 0:
if len(query) > 0: query = json.loads(querys)
return query[0]['EnteredCurrentStatus'] if len(query) > 0:
return query[0]['EnteredCurrentStatus']
return startTime + 1 return startTime + 1
if __name__ == "__main__": if __name__ == "__main__":