-
Notifications
You must be signed in to change notification settings - Fork 82
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
Pass through error message and/or error description from response body #257
Comments
I was just looking into this too. I use Traefik as my Ingress, so maybe nginx handles things differently. There doesnt seem to be a way to only apply a middleware via a condition yet. So at this point i am unsure what options are left. A custom middleware should be able to do this i suppose. |
Hello there, and thank you for bringing this issue to my attention! I'm currently working on a new major version of error pages, and I will address this as part of that update. When I have something ready for testing, I will notify you here. Please stay tuned! |
@r2DoesInc Let's consider how we can address this. Based on my understanding (and as @Ruakij mentioned), Traefik handles error pages like a typical API gateway. If the downstream service returns an error code and has the My question is whether the Nginx ingress works the same way. If it does, we can't forward the original response based on certain conditions. In that case, you would need to handle it at the ingress level. Am I correct, or am I missing something? Update: To investigate exactly what your ingress is sending to the errors service, you can try to set up a tool like https://webhook.site/ as the errors service. This will allow you to observe the payload, headers, and other details. If successful, sharing some screenshots with the details would be greatly appreciated! |
Off the top of my head I do not know the answer to that question. I will absolutely do some debugging and get back to you with some of the information provided by that site. My schedule still hasnt opened up much but Ive added this to my task list. Thats a nifty tool, thanks for sharing. |
Can I close this issue? |
@Ruakij - for traefik, I would create a separate ingressroute with a higher priority and no middleware to handle API requests. When you have two IngressRoutes, only one of them will be used to serve a request. If the (more specific) IngressRoute with the higher priority matches a request, the other (more general) IngressRoute with the middleware will not be executed. |
Is there an existing issue for this?
Describe the problem to be solved
I have this setup as a default error handler on my k8s cluster, and it works great overall. My apis deployed on the cluster have a bit of an issue though.
When returning a 404 or something that this project is setup to respond for, my error content is ignored.
This turns my
Into
Suggest a solution
I propose modifying the error page to pull from the response body if it is provided
Something like
error-pages/internal/http/core/errorpage.go
Line 56 in b8f9608
I dont know go, so not sure if thats how it would be implemented.
This could be configured behind a bool for
ALLOW_ERROR_MESSAGE_PASSTHROUGH
which would default to false to maintain consistency with prior behavior.Additional context
No response
The text was updated successfully, but these errors were encountered: