mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 06:38:04 +01:00
CallDnsRecordsManager: fix crash on startup due to typo in metric naming
This commit is contained in:
committed by
GitHub
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) {
|
||||
|
||||
Reference in New Issue
Block a user