Skip to content

Commit

Permalink
Merge pull request #3 from project-flogo/issue_22
Browse files Browse the repository at this point in the history
fix related to issue github.com/project-flogo/core/issues/22
  • Loading branch information
Frank Martinez authored Jan 28, 2019
2 parents 3cda946 + 174130c commit 95199d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions descriptor.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"description": "Simple Flow Action",
"homepage": "https://github.com/project-flogo/flow",
"async": true,
"passthru":true,
"settings":[
{
"name": "flowURI",
Expand Down
2 changes: 1 addition & 1 deletion instance/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func applyOutputMapper(taskInst *TaskInst) (bool, error) {
values, err := outputMapper.Apply(data.NewSimpleScope(taskInst.outputs, nil))

for name, value := range values {
taskInst.flowInst.attrs[name] = data.ToTypedValue(value)
taskInst.flowInst.attrs[name] = value //data.ToTypedValue(value)
}

return true, err
Expand Down

0 comments on commit 95199d4

Please sign in to comment.