From 5c076529c0d4e2c8f9d77e2b983c3e91f56ed08b Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Mon, 27 Jan 2014 11:37:18 -0500 Subject: [PATCH] Initial work towards the celery refactor... adjusting logic to allow building a worker chain... temporarily relax requirements on status checks --- awx/main/models/jobs.py | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/main/models/jobs.py b/awx/main/models/jobs.py index 5deabe4f4d..7423b61290 100644 --- a/awx/main/models/jobs.py +++ b/awx/main/models/jobs.py @@ -343,7 +343,6 @@ 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()