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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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