Skip to content

Commit ec27073

Browse files
committed
Add missing runtime
1 parent 7878ae6 commit ec27073

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

proposals/POEM-support-array-result.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,15 @@ Currently, openwhisk supports return json object only, e.g.
2525
"greeting": "Hello stranger!"
2626
}
2727
```
28-
It is necessary to support return array, e.g.
28+
It is necessary to support return array for common action, e.g.
2929
```shell
3030
# wsk action invoke hello-array -r
3131
[
3232
"a",
3333
"b"
3434
]
3535
```
36+
For sequence action, need to support as well.
3637

3738
# Status
3839
* Current state: In-progress
@@ -50,7 +51,7 @@ Make controller and invoker support array result both.
5051
## Runtime repos
5152
All runtime images should support array result. e.g.
5253

53-
* nodejs
54+
* nodejs (supports by default)
5455
* go
5556
* java
5657
* python
@@ -61,6 +62,8 @@ All runtime images should support array result. e.g.
6162
* dotnet
6263
* rust
6364
* swift
65+
* deno
66+
* ballerina
6467

6568
## Openwhisk-cli repo
6669
* When use wsk to execute action, need to support parse array result.

0 commit comments

Comments
 (0)