app/soc/models/job.py
changeset 2225 c6a0f935504c
parent 2216 2ac430aa5799
child 2229 b36ecf371aef
equal deleted inserted replaced
2224:fc719e902a70 2225:c6a0f935504c
    44   #: Waiting means that this job is waiting to be run.
    44   #: Waiting means that this job is waiting to be run.
    45   #: Started means that this job has a worker that is running it.
    45   #: Started means that this job has a worker that is running it.
    46   #: Finished means that this job has been completed.
    46   #: Finished means that this job has been completed.
    47   #: Aborted means that this job has been aborted due to a fatal error.
    47   #: Aborted means that this job has been aborted due to a fatal error.
    48   status = db.StringProperty(default='waiting',
    48   status = db.StringProperty(default='waiting',
    49       choices=['waiting','started','finished', 'aborted'])
    49       choices=['waiting', 'started', 'finished', 'aborted'])
    50 
    50 
    51   #: the date this job was last modified on
    51   #: the date this job was last modified on
    52   last_modified_on = db.DateTimeProperty(auto_now_add=True)
    52   last_modified_on = db.DateTimeProperty(auto_now_add=True)
    53 
    53 
    54   #: the amount of times this job raised an Exception (other than a
    54   #: the amount of times this job raised an Exception (other than a