add usage of ident_map for tsstats.client.Clients.__setitem__
This commit is contained in:
parent
55277a2c75
commit
cb6d433dca
|
@ -48,6 +48,7 @@ class Clients(MutableMapping):
|
|||
return len(self.store)
|
||||
|
||||
def __setitem__(self, key, value):
|
||||
key = self.ident_map.get(key, key)
|
||||
self.store[key] = value
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue