-
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
Exception Metrics cause IllegalArgumentException when using custom ErrorDecoders #1466
Comments
Can you make that repo into a PR with a test? Thanks |
do you have any preferences for the metric name? right now both are named |
If both express the same information, probably is safe to just eliminate one |
We've come across this issue while trying to upgrade Spring Cloud OpenFeign to Feign |
Fixed on 11.6 |
Seems like the
MeteredInvocationHandleFactory
infeign-micrometer
11.5 tries to create both a timer and counter with the same name when using a custom error decoder that does not return a subclass ofFeignException
. This results in the following exception:I have created this repo to demonstrate the issue (refer to the tests).
The text was updated successfully, but these errors were encountered: