You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/06/09 17:54:03 UTC

[GitHub] csantanapr opened a new issue #41: proxy doesn't handle unicode conformance for OpenWhisk.

csantanapr opened a new issue #41: proxy doesn't handle unicode conformance for OpenWhisk.
URL: https://github.com/apache/incubator-openwhisk-runtime-go/issues/41
 
 
   the proxy should be able to handle input JSON and output if it wants the same exact JSON output.
   
   Currently it returns nil for unicode input
   ```bash
   wsk action invoke golangfunc -p winter "❄ ☃ ❄" -r
   ```
   The expected output should be:
   ```json
   {
   "winter": "❄ ☃ ❄"
   }
   ```
   But the output is not is nil
   ```json
   {
   "winter": nil
   }
   ```
   
   cc @sciabarra 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services