nic-6443 commented on PR #13386: URL: https://github.com/apache/apisix/pull/13386#issuecomment-4484549354
The failed `routes_request_body` shard was caused by qjson lazy tables crossing the `core.request` boundary. JSONPath matching uses normal Lua table traversal, while qjson lazy arrays need qjson-specific iterators, so nested wildcard paths such as `post_arg.messages[*].content[*].type` did not match. Fixed in `8ab89aa18` by materializing qjson decode results before returning them from `core.request`. That keeps the new decoder compatible with existing consumers while still using qjson for this request-body decode path. -- 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]
