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

This commit is contained in:
Jonathan Klabunde Tomer 2024-02-09 12:27:51 -08:00
parent f7984ed642
commit 1591a2d9a3
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class CallRoutingTableManager implements Supplier<CallRoutingTable>, Mana
this.tableTag = tableTag;
this.routingTable.set(CallRoutingTable.empty());
this.refreshTimer = Metrics.timer(MetricsUtil.name(CallRoutingTableManager.class), tableTag);
this.refreshTimer = Metrics.timer(MetricsUtil.name(CallRoutingTableManager.class, tableTag));
}
private void handleDatabaseChanged(final InputStream inputStream) {