app/soc/models/job.py
changeset 2263 823fdb4e1781
parent 2229 b36ecf371aef
equal deleted inserted replaced
2262:5b0576dcc107 2263:823fdb4e1781
    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=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
    55   #: DeadlineExceededError).
    55   #: DeadlineExceededError).
    56   errors = db.IntegerProperty(default=0)
    56   errors = db.IntegerProperty(default=0)
    57 
    57