CallRoutingTableManager: fix crash on startup due to typo in metric naming
This commit is contained in:
parent
f7984ed642
commit
1591a2d9a3
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue