Skip to content

Commit a19a5fd

Browse files
authored
Pass exception parameter to overloaded method in FeignMetricTagResolver (#1716) (#1720)
1 parent 59fb915 commit a19a5fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

micrometer/src/main/java/feign/micrometer/FeignMetricTagResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public Tags tag(MethodMetadata methodMetadata, Target<?> target, Tag... tags) {
3434

3535
@Override
3636
public Tags tag(MethodMetadata methodMetadata, Target<?> target, Throwable e, Tag... tags) {
37-
return tag(methodMetadata.targetType(), methodMetadata.method(), target.url(), tags);
37+
return tag(methodMetadata.targetType(), methodMetadata.method(), target.url(), e, tags);
3838
}
3939

4040
@Override

0 commit comments

Comments
 (0)