enable dead_code lint

This commit is contained in:
Charles Hall 2024-05-21 21:58:43 -07:00
parent 518d0c9cf3
commit d7e945f4c5
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
17 changed files with 15 additions and 137 deletions

View file

@ -1170,17 +1170,6 @@ impl KeyValueDatabase {
Ok(())
}
#[tracing::instrument(skip(self))]
pub(crate) fn flush(&self) -> Result<()> {
let start = std::time::Instant::now();
let res = self.db.flush();
debug!("flush: took {:?}", start.elapsed());
res
}
#[tracing::instrument]
pub(crate) fn start_cleanup_task() {
use std::time::{Duration, Instant};