mirror of
https://github.com/ansible/awx.git
synced 2026-05-15 05:17:36 -02:30
removed 'self' from positional arguemnt of workflow attribute 'all_parents_must_converge' per Alans suggestion, since django takes it to be verbose_name, which is not needed
This commit is contained in:
@@ -13,11 +13,11 @@ class Migration(migrations.Migration):
|
|||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobnode',
|
model_name='workflowjobnode',
|
||||||
name='all_parents_must_converge',
|
name='all_parents_must_converge',
|
||||||
field=models.BooleanField(default=False, help_text='If enabled then the node will only run if all of the parent nodes have met the criteria to reach this node', verbose_name='self'),
|
field=models.BooleanField(default=False, help_text='If enabled then the node will only run if all of the parent nodes have met the criteria to reach this node'),
|
||||||
),
|
),
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='workflowjobtemplatenode',
|
model_name='workflowjobtemplatenode',
|
||||||
name='all_parents_must_converge',
|
name='all_parents_must_converge',
|
||||||
field=models.BooleanField(default=False, help_text='If enabled then the node will only run if all of the parent nodes have met the criteria to reach this node', verbose_name='self'),
|
field=models.BooleanField(default=False, help_text='If enabled then the node will only run if all of the parent nodes have met the criteria to reach this node'),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -80,7 +80,6 @@ class WorkflowNodeBase(CreatedModifiedModel, LaunchTimeConfig):
|
|||||||
related_name='%(class)ss_always',
|
related_name='%(class)ss_always',
|
||||||
)
|
)
|
||||||
all_parents_must_converge = models.BooleanField(
|
all_parents_must_converge = models.BooleanField(
|
||||||
'self',
|
|
||||||
default=False,
|
default=False,
|
||||||
help_text=_("If enabled then the node will only run if all of the parent nodes "
|
help_text=_("If enabled then the node will only run if all of the parent nodes "
|
||||||
"have met the criteria to reach this node")
|
"have met the criteria to reach this node")
|
||||||
|
|||||||
Reference in New Issue
Block a user