Changeset 349 for trunk/jobmond/jobmond.py
- Timestamp:
- 04/27/07 14:51:33 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jobmond/jobmond.py
r348 r349 521 521 522 522 joblist = {} 523 523 524 while len(joblist) == 0: 524 525 try: 525 526 joblist = self.pq.getjobs() 526 except PBSError: 527 time.sleep( TORQUE_POLL_INTERVAL ) 527 except PBSError, detail: 528 debug_msg( 10, "Caught PBS unavaible, skipping until next polling interval: " + str( detail ) ) 529 return None 528 530 529 531 self.cur_time = time.time()
Note: See TracChangeset
for help on using the changeset viewer.