Dominik Kellner
Dominik Kellner
Thank you for reporting this issue. We're preparing a new release at the moment. It should work using the current master branch - can you verify this?
I just tried this myself with the trivial example: `curl -i http://localhost:5000/people?where={"lastname":"Jefferson"}` will throw the same exception, but this is due to wrong escaping on the client side (curl). You...
The response body should contain more information on why the validation failed, can you provide that one, too? One thing that could be the problem: you're referring to `clean_controller` but...
You'll need to add a `relationship` too, e.g. as in https://github.com/pyeve/eve-sqlalchemy/blob/master/examples/many_to_one/many_to_one/domain.py . At the moment plain ForeignKeys are not exposed by the API.
This would be a feature properly handled by Eve. Did you check Eve's documentation and/or ask at https://github.com/pyeve/eve?
I've never used `viewonly` myself, thanks for bringing this up. I've just tried to reproduce your problems with this (your example is incomplete, so I had to do some guesswork,...
My local test with Kind already had v1.11.0 installed. The issue is reproducible with this version as well. ``` /etc/nginx $ /nginx-ingress-controller --version ------------------------------------------------------------------------------- NGINX Ingress controller Release: v1.11.0 Build:...
Sure! URL-encoded `%` is `%25`, which is matched by `.` in the regex rule and forwarded to the backend. **GET `/foo%25bar`**: ``` $ kubectl exec -it -n ingress-nginx $POD_NAME --...
Yes, but this only applies to newlines (`%0A`). All other percent-escaped characters work in both configurations. The reason is that `.` in an nginx regex does not match newlines by...
Do you have any objections to the approach in this PR? Let me know if there’s anything I can adjust.