Changeset 155 for trunk/daemon/togad.py


Ignore:
Timestamp:
06/22/05 09:33:35 (19 years ago)
Author:
bastiaans
Message:

daemon/togad.py:

  • Jobs in state H (hold) were getting stored changed so only jobs in state R/Q/F are stored
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/daemon/togad.py

    r154 r155  
    500500
    501501                for jobid in self.jobs_to_store:
    502                         if self.jobAttrs[ jobid ]['status'] not in [ 'E' ]:
     502                        if self.jobAttrs[ jobid ]['status'] in [ 'R', 'Q', 'F' ]:
    503503                                self.ds.storeJobInfo( jobid, self.jobAttrs[ jobid ] )   
    504504
Note: See TracChangeset for help on using the changeset viewer.