Use wf_identifier when creating a execution

The parameter in mistralclient was changed from
workflow_identifier to wf_identifier.

Change-Id: Idae13cd39c909127a0772e970426c98235e8a993
This commit is contained in:
Tobias Urdin 2023-02-07 13:41:01 +00:00
parent 1f33d6ec68
commit 3f57545479
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class ExecuteForm(forms.SelfHandlingForm):
def handle(self, request, data):
try:
data['workflow_identifier'] = data.pop('workflow_name')
data['wf_identifier'] = data.pop('workflow_name')
data['workflow_input'] = {}
for param in self.workflow_parameters:
value = data.pop(param)