Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configuration: take into account POST URI params when matching mappin…
…g rules Suppose we have this mapping rule: POST /test?key={value} Before this change, `curl -XPOST "http://localhost:8080/test?key=hello" -d "another=parameter"` did not match, but `curl -XPOST "http://localhost:8080/test" -d "key=hello&another=parameter"` did. That's because in POST requests, body params were taken into account, but URI params were not. This commit changes that inconsistent behavior, now both body & URI params are checked.
- Loading branch information