Changeset 360
- Timestamp:
- 06/08/07 15:56:35 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jobarchived/jobarchived.py
r324 r360 649 649 650 650 self.jobAttrs[ jobid ]['status'] = 'F' 651 self.jobAttrs[ jobid ]['stop_timestamp'] = str( mytime)651 self.jobAttrs[ jobid ]['stop_timestamp'] = str( self.heartbeat ) 652 652 653 653 if not jobid in self.jobs_to_store: … … 701 701 702 702 if jobinfo['reported'] > jobattrs[ jobid ][ 'reported' ] and jobinfo['reported'] == self.heartbeat: 703 return 1703 return True 704 704 705 705 else: 706 return 1707 708 return 0706 return True 707 708 return False 709 709 710 710 class GangliaXMLHandler( xml.sax.handler.ContentHandler ):
Note: See TracChangeset
for help on using the changeset viewer.