Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Oct 11, 2024
1 parent 10b2317 commit fda10fd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use std::{
path::Path,
sync::Arc,
thread::available_parallelism,
time::{Duration, Instant},
time::Duration,
};

use anyhow::{anyhow, Context, Result};
Expand Down Expand Up @@ -249,7 +249,6 @@ impl BackingStorage for LmdbBackingStorage {
meta_updates: Vec<ChunkedVec<CachedDataUpdate>>,
data_updates: Vec<ChunkedVec<CachedDataUpdate>>,
) -> Result<()> {
let start = Instant::now();
let mut op_count = 0;
let mut tx = self.env.begin_rw_txn()?;
let mut task_meta_items_result = Ok(Vec::new());
Expand Down

0 comments on commit fda10fd

Please sign in to comment.