Fix kubeless input & output

This reflects the actual behavior of `_.capitalize`.
Namely, that it doesn't do anything useful on objects.
This commit is contained in:
Daniel Schep 2018-11-12 09:08:26 -05:00 committed by GitHub
parent 8f09cc823c
commit ddb13df3dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,9 +51,9 @@ $ npm install
Invokes the Function and returns results.
```bash
$ serverless invoke --function capitalize --data '{"KUBELESS": "Welcome!"}' -l
$ serverless invoke --function capitalize --data '"WELCOME TO KUBELESS!"' -l
# results
{kubeless: 'welcome!'}
"Welcome To Kubeless!"
```
4. **Fetch the Function Logs**