Mistral reverse workflows
I am trying mistral reverse workflows on liberty version but it shows error like task_name not found. What am I missing ?
First time here? Check out the FAQ!
I am trying mistral reverse workflows on liberty version but it shows error like task_name not found. What am I missing ?
It looks like you did not pass 'task_name' to the execution command (you didn't add the workflow you tried and you execution command).
I am adding an example of how to use such workflow via cli.
Example:
workflow:
--- version: '2.0' my_reverse_wf: type: reverse tasks: first: action: std.noop second: action: std.noop requires: [first]
inputs.json:
{}
params.json:
{"task_name": "second"}
execution command:
mistral execution-create my_reverse_wf inputs.json params.json
Asked: 2016-04-17 07:04:40 -0600
Seen: 122 times
Last updated: Jul 17 '16