ningyougang commented on code in PR #5311:
URL: https://github.com/apache/openwhisk/pull/5311#discussion_r948621474
##########
docs/actions-docker.md:
##########
@@ -236,6 +236,18 @@ DATE=`date`
echo "{ \"message\": \"Hello $NAME! It is $DATE.\" }"
```
+For the return result, not only support `dictionary` but also support `array`
Review Comment:
Updated accordingly
##########
docs/actions-docker.md:
##########
@@ -236,6 +236,18 @@ DATE=`date`
echo "{ \"message\": \"Hello $NAME! It is $DATE.\" }"
```
+For the return result, not only support `dictionary` but also support `array`
+```
+#!/bin/bash
+echo '["a", "b"]''
+```
+
+And support array result for sequence action as well, the first action's array
result can be used as next action's input parameter
Review Comment:
Updated accordingly
##########
docs/actions-dotnet.md:
##########
@@ -79,6 +79,47 @@ cd out
zip -r -0 helloDotNet.zip *
```
+For the return result, not only support `dictionary` but also support `array`
Review Comment:
Updated accordingly
--
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]