fix: Fix status command panicking when additional LRU caches are set up

This commit is contained in:
Lukas Wirth 2023-04-25 10:41:05 +02:00
parent d1ca505525
commit e8f5d7620f

View File

@ -227,9 +227,10 @@ impl fmt::Display for SymbolsStats<SourceRootId> {
}
impl<Key> StatCollect<Key, Arc<SymbolIndex>> for SymbolsStats<Key> {
fn collect_entry(&mut self, _: Key, value: Option<Arc<SymbolIndex>>) {
let symbols = value.unwrap();
self.total += symbols.len();
self.size += symbols.memory_size();
if let Some(symbols) = value {
self.total += symbols.len();
self.size += symbols.memory_size();
}
}
}
@ -254,8 +255,7 @@ impl fmt::Display for AttrsStats {
impl<Key> StatCollect<Key, Attrs> for AttrsStats {
fn collect_entry(&mut self, _: Key, value: Option<Attrs>) {
let attrs = value.unwrap();
self.entries += 1;
self.total += attrs.len();
self.total += value.map_or(0, |it| it.len());
}
}