app/soc/models/job.py
changeset 2229 b36ecf371aef
parent 2225 c6a0f935504c
child 2263 823fdb4e1781
--- 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="")