From db14daf5e5951a0fee6b746b39db261f24844f70 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 27 Jan 2014 12:20:21 -0500 Subject: [PATCH] Leave another TODO on the job runner, fix a misspelling on the project update hook --- awx/main/models/jobs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/models/jobs.py b/awx/main/models/jobs.py index 7423b61290..5deabe4f4d 100644 --- a/awx/main/models/jobs.py +++ b/awx/main/models/jobs.py @@ -343,6 +343,7 @@ class Job(CommonTask): opts = dict([(field, kwargs.get(field, '')) for field in needed]) if not all(opts.values()): return False + # TODO: This is temporary to allow a dependent task to continue self.status = 'waiting' self.save(update_fields=['status']) transaction.commit()