From 670a1847083924a656e045c4bc06faa8c1f34389 Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Thu, 25 Jul 2019 13:30:32 -0400 Subject: [PATCH] Update job status comments - waiting and pending job descriptions were not accurate --- awx/main/models/unified_jobs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/models/unified_jobs.py b/awx/main/models/unified_jobs.py index e0de362e8e..f2831087d3 100644 --- a/awx/main/models/unified_jobs.py +++ b/awx/main/models/unified_jobs.py @@ -65,8 +65,8 @@ class UnifiedJobTemplate(PolymorphicModel, CommonModelNameNotUnique, Notificatio # status inherits from related jobs. Thus, status must be able to be set to any status that a job status is settable to. JOB_STATUS_CHOICES = [ ('new', _('New')), # Job has been created, but not started. - ('pending', _('Pending')), # Job has been queued, but is not yet running. - ('waiting', _('Waiting')), # Job is waiting on an update/dependency. + ('pending', _('Pending')), # Job is pending Task Manager processing (blocked by dependency req, capacity or a concurrent job) + ('waiting', _('Waiting')), # Job has been assigned to run on a specific node (and is about to run). ('running', _('Running')), # Job is currently running. ('successful', _('Successful')), # Job completed successfully. ('failed', _('Failed')), # Job completed, but with failures.