[Gug-cvs] gug/gug/service/exec exec.py,1.57,1.58
Status: Planning
Brought to you by:
szferi
From: Adrian T. <cs...@us...> - 2007-09-27 10:36:32
|
Update of /cvsroot/gug/gug/gug/service/exec In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv23476/gug/service/exec Modified Files: exec.py Log Message: Adding Decision Maker module It is Integrated into the following services: Sched, CM, StM Index: exec.py =================================================================== RCS file: /cvsroot/gug/gug/gug/service/exec/exec.py,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** exec.py 19 Sep 2007 14:12:24 -0000 1.57 --- exec.py 27 Sep 2007 10:36:04 -0000 1.58 *************** *** 383,389 **** try: job= self.execids.get(pid) ! out.append({ 'grid_id': pid, 'status' : job['status'] , 'mem_usage': -1, 'cpu_usage':-1, 'exit_code': -1}) except: ! out.append({ 'grid_id': pid, 'status' : BES_OVERALL_STATE_UNKNOWN , 'mem_usage': -1, 'cpu_usage':-1, 'exit_code': -1}) return out --- 383,389 ---- try: job= self.execids.get(pid) ! out.append({ 'id': pid, 'status' : job['status'] , 'mem_usage': -1, 'cpu_usage':-1, 'exit_code': -1}) except: ! out.append({ 'id': pid, 'status' : BES_OVERALL_STATE_UNKNOWN , 'mem_usage': -1, 'cpu_usage':-1, 'exit_code': -1}) return out |