marcelfvieira commented on issue #5406:
URL: https://github.com/apache/openwhisk/issues/5406#issuecomment-1533853978
But the action returns the desired value. I'm running a simple nodejs action
shown above
```
/**
* Hello world as an OpenWhisk action.
*/
function main(params) {
var name = params.name || 'World';
return {payload: 'Hello, ' + name + '!'};
}
```
Do you know a way to verify what is going wrong?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]