Rename execution_id to workflow_execution_id
The field execution_id is renamed in the task object to workflow_execution_id. References in the mistralclient are changed accordingly. Change-Id: Id4deeba546b1fadd4c18585ca177d74bdf08f6dd Closes-Bug: #1428374
This commit is contained in:
@@ -26,7 +26,7 @@ TASK_DICT = {
|
||||
'id': '123',
|
||||
'name': 'some',
|
||||
'workflow_name': 'thing',
|
||||
'execution_id': '321',
|
||||
'workflow_execution_id': '321',
|
||||
'state': 'RUNNING',
|
||||
}
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ from mistralclient.tests.unit.v2 import base
|
||||
|
||||
TASK = {
|
||||
'id': "1",
|
||||
'execution_id': '123',
|
||||
'workflow_execution_id': '123',
|
||||
'name': 'my_task',
|
||||
'workflow_name': 'my_wf',
|
||||
'state': 'RUNNING',
|
||||
|
||||
Reference in New Issue
Block a user