From c1998e378df35ccc4f233ffc25fcadb335338c3c Mon Sep 17 00:00:00 2001 From: Aaron Tan Date: Wed, 12 Jul 2017 12:00:59 -0400 Subject: [PATCH] Remove run type project update task_impact --- awx/main/models/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/models/projects.py b/awx/main/models/projects.py index 4275661437..4536e4a307 100644 --- a/awx/main/models/projects.py +++ b/awx/main/models/projects.py @@ -473,7 +473,7 @@ class ProjectUpdate(UnifiedJob, ProjectOptions, JobNotificationMixin): @property def task_impact(self): - return 20 + return 0 if self.job_type == 'run' else 20 @property def result_stdout(self):