mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 14:11:24 -03:30
Fix RelatedManager exception issue on the dashboard
This commit is contained in:
parent
99726266e9
commit
7fa9e3289b
@ -164,7 +164,7 @@ class DashboardView(APIView):
|
||||
failed_group_inventory = [g.inventory for g in user_groups if g.inventory.has_active_failures]
|
||||
group_with_job_failure = 0
|
||||
for i in failed_group_inventory:
|
||||
for j in i.jobs:
|
||||
for j in i.jobs.all():
|
||||
if j.failed:
|
||||
group_with_job_failure += 1
|
||||
break
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user