Skip to content

Commit

Permalink
Get attribute value rather than attribute itself
Browse files Browse the repository at this point in the history
  • Loading branch information
lixingwang committed Jan 3, 2019
1 parent 336987c commit 2b64863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action/flow/instance/instances.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ func (inst *IndependentInstance) handleTaskDone(taskBehavior model.TaskBehavior,
if ok {
//if the flow failed, set the error
for _, value := range containerInst.returnData {
host.SetOutput(value.Name(), value)
host.SetOutput(value.Name(), value.Value())
}

inst.scheduleEval(host)
Expand Down

0 comments on commit 2b64863

Please sign in to comment.