Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sitalkedia authored and aptos-bot committed Mar 23, 2022
1 parent 4cd00cc commit b012884
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions storage/aptosdb/src/pruner/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl Pruner {
) -> Self {
let (command_sender, command_receiver) = channel();

let least_readable_version = Arc::new(Mutex::new(vec![0, 0, 0, 0, 0, 0]));
let least_readable_version = Arc::new(Mutex::new(vec![0, 0, 0, 0, 0]));
let worker_progress_clone = Arc::clone(&least_readable_version);

DIEM_STORAGE_PRUNE_WINDOW.set(
Expand Down Expand Up @@ -130,7 +130,6 @@ impl Pruner {
least_readable_default_store_version,
least_readable_default_store_version,
least_readable_default_store_version,
least_readable_default_store_version,
],
})
.expect("Receiver should not destruct prematurely.");
Expand Down

0 comments on commit b012884

Please sign in to comment.