From 0f0e92ff3335a5835667bba2847c8e2aae1bfc90 Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Mon, 6 Feb 2017 14:45:44 -0500 Subject: [PATCH] allow system jobs to get sucked up in the fail inconsistent task cleanup --- awx/main/scheduler/partial.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/scheduler/partial.py b/awx/main/scheduler/partial.py index 088b641552..6cb87add15 100644 --- a/awx/main/scheduler/partial.py +++ b/awx/main/scheduler/partial.py @@ -230,7 +230,7 @@ class InventorySourceDict(PartialModelDict): class SystemJobDict(PartialModelDict): FIELDS = ( - 'id', 'created', 'status', + 'id', 'created', 'status', 'celery_task_id', ) model = SystemJob