Skip to content

Commit

Permalink
Make all_parents_must_converge settable when creating node
Browse files Browse the repository at this point in the history
When targeting, ../workflow_job_templates/id#/workflow_nodes/ endpoint,
user could not set all_parents_must_converge to true.

awx issue ansible#7063
  • Loading branch information
fosterseth committed Jun 8, 2020
1 parent feb9c57 commit df34d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion awx/api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3600,7 +3600,7 @@ def validate(self, attrs):
ujt = self.instance.unified_job_template
if ujt is None:
ret = {}
for fd in ('workflow_job_template', 'identifier'):
for fd in ('workflow_job_template', 'identifier', 'all_parents_must_converge'):
if fd in attrs:
ret[fd] = attrs[fd]
return ret
Expand Down

0 comments on commit df34d0f

Please sign in to comment.