Error handling
I am getting the following feedback :
--------------------------- Platform Feedback Below ----------------------------
Some customers reported that the service is returning client errors that break their retry logic: 400 is an unexpected status code
SRE Says: your solution is not working well enough to be promoted to production
the requirement says I need to:
GET /company?id=XX&country_iso=YY
. This API endpoint receives the parameters id and country_iso. id
can be a string without any particular limitation. country_iso
will be a two-letter country code to select the backend according to the application configuration. Your solution must query the backend in a proper country and return:
- An HTTP 200/OK reply when the company with the requested id exists on the corresponding backend. The body should be a JSON object with the company data returned by a backend.
- An HTTP 404/Not Found reply if the company with the requested id does not exist on the corresponding backend.
Im not sure where im going wrong in my error handling. Any help or advice would be appreciated7 Replies
⌛
This post has been reserved for your question.
Hey @🔟! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
What JDK?
JDK 17
Hm, have you enabled the method-parameter-name-promotion for the compiler?
( https://stackoverflow.com/questions/53581997
https://maven.apache.org/plugins/maven-compiler-plugin/compile-mojo.html#parameters)
I havent yet, let me try that. Thank you
If you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
Post Closed
This post has been closed by <@1305556207431585894>.