Skip to content

Commit c5a7403

Browse files
committed
fix pbs on galileo production
1 parent aa8b9e1 commit c5a7403

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

server/rcm_server_pbs.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,10 @@ def get_queue(self,testJobScriptDict=None):
149149
stdout,stderr=p1.communicate()
150150
if len(stderr) == 0:
151151
queueList.append(key)
152-
self.kill_job(stdout.strip().split('.')[0])
152+
try:
153+
self.kill_job(stdout.strip().split('.')[0])
154+
except:
155+
pass
153156
return queueList
154157

155158

0 commit comments

Comments
 (0)