mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 22:48:02 -03:30
short circuit performance optimization
This commit is contained in:
parent
b4fc585495
commit
77661c6032
@ -122,6 +122,9 @@ class WorkflowDAG(SimpleDAG):
|
||||
all_parents_dnr = True
|
||||
parent_run_path = False
|
||||
for p in parent_nodes:
|
||||
if p.do_not_run is True:
|
||||
continue
|
||||
|
||||
if not p.job and p.do_not_run is False:
|
||||
all_parents_dnr = False
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user