mirror of
https://gitlab.cs.uni-saarland.de/hpc/cc-condor-sync.git
synced 2025-04-05 05:55:55 +02:00
Make stop script more stable..
This commit is contained in:
parent
e7f54aa1b7
commit
1f97d3f817
@ -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__":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user