Skip to content

Commit

Permalink
Pass exception parameter to overloaded method in FeignMetricTagResolv…
Browse files Browse the repository at this point in the history
…er (#1716) (#1720)
  • Loading branch information
eshishkin committed Aug 9, 2022
1 parent ef983ac commit c2bdad3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Tags tag(MethodMetadata methodMetadata, Target<?> target, Tag... tags) {

@Override
public Tags tag(MethodMetadata methodMetadata, Target<?> target, Throwable e, Tag... tags) {
return tag(methodMetadata.targetType(), methodMetadata.method(), target.url(), tags);
return tag(methodMetadata.targetType(), methodMetadata.method(), target.url(), e, tags);
}

@Override
Expand Down

0 comments on commit c2bdad3

Please sign in to comment.