Commit 1745a5ee authored by 孙健's avatar 孙健 Committed by Stephane Nicoll

Fix metric check in case of duplicate metric

Closes gh-9497
parent 144d987c
......@@ -148,7 +148,7 @@ public class DropwizardMetricServices implements CounterService, GaugeService {
}
catch (IllegalArgumentException ex) {
Metric added = this.registry.getMetrics().get(name);
registrar.checkExisting(metric);
registrar.checkExisting(added);
return (T) added;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment