CallDnsRecordsManager: fix crash on startup due to typo in metric naming

This commit is contained in:
Jonathan Klabunde Tomer
2024-02-09 12:14:50 -08:00
committed by GitHub
parent be634c6043
commit f7984ed642

View File

@@ -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) {