-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DecodingError should return 4xx instead of 500 #717
Comments
It should not. From MDN:
A response decoding error could be due to a client or server error and may have been processed. It doesn't fit with 400 on multiple levels. These errors should not be given a status code at all as they do not directly relate to HTTP. If it must be done, pick an unused range (e.g., 6XX or 9XX) and map custom status codes to that range. |
I read this as |
Hi @kdubb - this issue is about server request decoding (on the server). Is it possible you assumed it's about the client decoding a response? |
🤦♂️ Yes. It was most definitely about client decoding errors (I went through this discussion with a code generator I built). Having a bit of experience with this, and more context, I would say that 500 is probably the correct code for server decoding if the requests are validated prior to decoding. If the decoding is essentially validating the request then 400 starts to look more correct but it has issues. Decoding as validation blurs the line and can lead to (as seems to be suggested here) incorrect responses because you're doing two things (decoding and validating) but mapping errors to a single type (decoding or validation). Coincidentally, I'm currently working on a JSON Schema driven SerDes package that is a single pass validation and decoding library that can report the difference. Basically, if it doesn't validate it's a 4XX error. If it validates but fails during translation to the server's expected type it's a decoding error (aka 5XX). Side note... The SerDes package work is actually why I started looking into this code generator and switching away from our in-house one. I really like the code structure (even if it's a bit verbose) and it allows us to preserve all the features we need (JSON/CBOR/YAML agnostic). So, you might see a bit of activity from me as I get into converting a fairly large API over as there seems to be a few things to we'll have to figure out (the one large file problem, etc.). Anyway great job so far! |
Motivation
If there is an error in decoding a request, a 500 is thrown currently. This should be a 4xx status code.
Proposed solution
Conform
DecodingError
toHTTPResponseConvertible
protocol.Alternatives considered
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: