diff -r d58dd8963332 -r b36ecf371aef app/soc/models/job.py --- a/app/soc/models/job.py Sat Apr 18 21:34:41 2009 +0000 +++ b/app/soc/models/job.py Sun Apr 19 00:06:12 2009 +0000 @@ -52,9 +52,12 @@ last_modified_on = db.DateTimeProperty(auto_now_add=True) #: the amount of times this job raised an Exception (other than a - #: DeadlineExceededException). + #: DeadlineExceededError). errors = db.IntegerProperty(default=0) + #: the amount of times this job raised an DeadlineExceededError. + timeouts = db.IntegerProperty(default=0) + #: the data that the worker will use to process this job text_data = db.TextProperty(required=False, default="")