refactor RecycleStores::add_entries (#29475)

* refactor RecycleStores::add_entries

* pr feedback
This commit is contained in:
Jeff Washington (jwash) 2023-01-03 09:56:30 -06:00 committed by GitHub
parent 89e733c2b3
commit 8c878daada
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1196,9 +1196,9 @@ impl RecycleStores {
}
fn add_entries(&mut self, new_entries: SnapshotStorage) {
self.total_bytes += new_entries.iter().map(|e| e.total_bytes()).sum::<u64>();
let now = Instant::now();
for new_entry in new_entries {
self.total_bytes += new_entry.total_bytes();
self.entries.push((now, new_entry));
}
}