mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 12:20:45 -03:30
merge artifacts deterministically
This commit is contained in:
parent
475c90fd00
commit
02df0c29e9
@ -82,7 +82,7 @@ class WorkflowNodeBase(CreatedModifiedModel, LaunchTimeConfig):
|
||||
success_parents = getattr(self, '%ss_success' % self.__class__.__name__.lower()).all()
|
||||
failure_parents = getattr(self, '%ss_failure' % self.__class__.__name__.lower()).all()
|
||||
always_parents = getattr(self, '%ss_always' % self.__class__.__name__.lower()).all()
|
||||
return success_parents | failure_parents | always_parents
|
||||
return (success_parents | failure_parents | always_parents).order_by('id')
|
||||
|
||||
@classmethod
|
||||
def _get_workflow_job_field_names(cls):
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user