-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Url field in FeignException #845
Labels
proposal
Proposed Specification or API change
waiting for votes
Enhancements or changes proposed that need more support before consideration
Comments
kdavisk6
added
enhancement
For recommending new capabilities
question
General usage or 'how-to' questions
labels
Dec 1, 2018
I think what we may want to do is what we've done elsewhere and store the original request as part of |
Closed
kdavisk6
added
waiting for votes
Enhancements or changes proposed that need more support before consideration
proposal
Proposed Specification or API change
and removed
question
General usage or 'how-to' questions
enhancement
For recommending new capabilities
labels
May 28, 2019
kdavisk6
pushed a commit
that referenced
this issue
Aug 26, 2019
Fixes #845 This change allows Feign Exceptions to be created with the original request as an optional parameter. Changes include: * Request field added to FeignException * New constructors are defended from null in request argument * Tests to check null instead of request, null message updated
velo
pushed a commit
that referenced
this issue
Oct 7, 2024
Fixes #845 This change allows Feign Exceptions to be created with the original request as an optional parameter. Changes include: * Request field added to FeignException * New constructors are defended from null in request argument * Tests to check null instead of request, null message updated
velo
pushed a commit
that referenced
this issue
Oct 8, 2024
Fixes #845 This change allows Feign Exceptions to be created with the original request as an optional parameter. Changes include: * Request field added to FeignException * New constructors are defended from null in request argument * Tests to check null instead of request, null message updated
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
proposal
Proposed Specification or API change
waiting for votes
Enhancements or changes proposed that need more support before consideration
When RetryableException was caused we have information about url only in exception message. I think it will be useful to have url like an exception field.
Some argumentation. Suppose we have several feign clients with same api type but different url. When RetryableException was caused we have information about unhealthy url only in exception message. Url like field will give more possibilities to handle error more correctly
The text was updated successfully, but these errors were encountered: