Open mijailr opened 6 months ago
You can reproduce this issue with this WfSpec
in java
return new WorkflowImpl(
"example-basic",
wf -> {
WfRunVariable theName = wf.addVariable("input-name", VariableType.STR).searchable();
WfRunVariable another = wf.addVariable("another", VariableType.INT).searchable();
wf.execute("greet", theName);
wf.mutate(another, VariableMutationType.ASSIGN, "Hello, World!");
}
);
We still need to discuss this as a team about how to implement this to make the UX enjoyable
Context
There is not current implantation to display any
ThreadRun
errors to the user. The information that is currently implemented is not enough to differentiate theTaskRun
error vsThreadRun
error. @eduwercamacaro will have to update the server to accommodate this issue.For example:
It should check if
$.failures[]
is not null or empty and change the node status to ERROR. Rendering the$.failures[].failureName
and$.failures[].message
in a error box.Components
dashboard server