This is an automated email from the ASF dual-hosted git repository. ningyougang pushed a commit to branch poem-support-array-result in repository https://gitbox.apache.org/repos/asf/openwhisk.git
commit 0b4221e57c59d42cf6b76705bc88a3c33a3440c0 Author: ning.yougang <[email protected]> AuthorDate: Thu Jul 21 15:27:31 2022 +0800 Add missing runtime --- proposals/POEM-support-array-result.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/proposals/POEM-support-array-result.md b/proposals/POEM-support-array-result.md index e93cf4cf2..bf579e07e 100644 --- a/proposals/POEM-support-array-result.md +++ b/proposals/POEM-support-array-result.md @@ -25,7 +25,7 @@ Currently, openwhisk supports return json object only, e.g. "greeting": "Hello stranger!" } ``` -It is necessary to support return array, e.g. +It is necessary to support return array for common action, e.g. ```shell # wsk action invoke hello-array -r [ @@ -33,6 +33,7 @@ It is necessary to support return array, e.g. "b" ] ``` +For sequence action, need to support as well. # Status * Current state: In-progress @@ -50,7 +51,7 @@ Make controller and invoker support array result both. ## Runtime repos All runtime images should support array result. e.g. -* nodejs +* nodejs (supports by default) * go * java * python @@ -61,6 +62,8 @@ All runtime images should support array result. e.g. * dotnet * rust * swift +* deno +* ballerina ## Openwhisk-cli repo * When use wsk to execute action, need to support parse array result.
