Changeset 151 for trunk/daemon
- Timestamp:
- 06/21/05 10:05:08 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/togad.py
r146 r151 491 491 492 492 self.jobAttrs[ jobid ]['status'] = 'F' 493 self.jobAttrs[ jobid ]['stop_timestamp'] = str( int( jobinfo['reported'] ) + int( jobinfo['poll_interval'] ))493 self.jobAttrs[ jobid ]['stop_timestamp'] = str( mytime ) 494 494 495 495 if not jobid in self.jobs_to_store: … … 499 499 500 500 for jobid in self.jobs_to_store: 501 self.ds.storeJobInfo( jobid, self.jobAttrs[ jobid ] ) 501 if self.jobAttrs[ jobid ]['status'] not in [ 'E' ]: 502 self.ds.storeJobInfo( jobid, self.jobAttrs[ jobid ] ) 502 503 503 504 debug_msg( 1, printTime() + ' - torque_xml_thread(): Done storing.' )
Note: See TracChangeset
for help on using the changeset viewer.