Changeset 243 for trunk/jobmond
- Timestamp:
- 04/07/06 17:31:25 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jobmond/jobmond.py
r228 r243 287 287 status = self.getAttr( attrs, 'job_state' ) 288 288 289 queued_timestamp = self.getAttr( attrs, 'ctime' ) 290 print queued_timestamp 291 289 292 if status == 'R': 290 293 start_timestamp = self.getAttr( attrs, 'mtime' ) … … 355 358 myAttrs['status'] = status 356 359 myAttrs['start_timestamp'] = start_timestamp 360 myAttrs['queued_timestamp'] = queued_timestamp 357 361 myAttrs['reported'] = str( int( int( self.cur_time ) + int( self.timeoffset ) ) ) 358 362 myAttrs['nodes'] = nodeslist … … 421 425 if jobattrs['start_timestamp'] != '': 422 426 appendList.append( 'start_timestamp=' + jobattrs['start_timestamp'] ) 427 428 if jobattrs['queued_timestamp'] != '': 429 appendList.append( 'queued_timestamp=' + jobattrs['queued_timestamp'] ) 423 430 424 431 appendList.append( 'reported=' + jobattrs['reported'] )
Note: See TracChangeset
for help on using the changeset viewer.