Merge "Use wf_identifier when creating a execution"

This commit is contained in:
Zuul 2023-02-07 18:59:27 +00:00 committed by Gerrit Code Review
commit 27fe8009b5
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)