Clean up properly when clearing label cache

This commit is contained in:
ahocevar
2019-07-04 16:10:28 +02:00
parent b4306da7bb
commit 5616c535b0
3 changed files with 5 additions and 1 deletions

View File

@@ -21,8 +21,8 @@ class LabelCache extends LRUCache {
}
clear() {
super.clear();
this.consumers = {};
super.clear();
}
/**