bzp2010 opened a new issue #5756:
URL: https://github.com/apache/apisix/issues/5756
The current `openwhisk` plugin will take the response from Apache OpenWhisk
and return it directly without parsing. This request may contain complex data
that rewrites the status code, response headers, and response body. We need to
parse it and change the APISIX response.
The complex data like this:
```text
{
"statusCode": 401,
"headers": {
"addition-header": "a-header"
},
"body": "xxx" | {"xxx":"xxx"}
}
```
We need to determine if the OpenWhisk response contains them, and if they
are present, write them to the APISIX response.
--
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]