CallDnsRecordsManager: fix crash on startup due to typo in metric naming
This commit is contained in:
parent
be634c6043
commit
f7984ed642
|
@ -53,7 +53,7 @@ public class CallDnsRecordsManager implements Supplier<CallDnsRecords>, Managed
|
|||
);
|
||||
|
||||
this.callDnsRecords.set(CallDnsRecords.empty());
|
||||
this.refreshTimer = Metrics.timer(MetricsUtil.name(CallDnsRecordsManager.class), "refresh");
|
||||
this.refreshTimer = Metrics.timer(MetricsUtil.name(CallDnsRecordsManager.class, "refresh"));
|
||||
}
|
||||
|
||||
private void handleDatabaseChanged(final InputStream inputStream) {
|
||||
|
|
Loading…
Reference in New Issue