diff options
author | Alex <alex@adnab.me> | 2023-01-26 21:10:21 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2023-01-26 21:10:21 +0000 |
commit | f2c256cac4e599335d592dd580011cf15f278a51 (patch) | |
tree | 8a7e90cf4bcf40ef7513e9ffaa636a012ebcc4a9 /src/block/repair.rs | |
parent | a08e01f17a9e4bb80880e28a4a28b2d88a9aec83 (diff) | |
parent | d6af95d20520eec64e5e4c0c873c6e3a8ac1509d (diff) | |
download | garage-f2c256cac4e599335d592dd580011cf15f278a51.tar.gz garage-f2c256cac4e599335d592dd580011cf15f278a51.zip |
Merge pull request 'Many clippy lints fixed' (#488) from k2v-watch-range-2 into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/488
Diffstat (limited to 'src/block/repair.rs')
-rw-r--r-- | src/block/repair.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/repair.rs b/src/block/repair.rs index 064cc005..d4593dbf 100644 --- a/src/block/repair.rs +++ b/src/block/repair.rs @@ -466,11 +466,11 @@ impl BlockStoreIterator { let ent_type = data_dir_ent.file_type().await?; let name = name.strip_suffix(".zst").unwrap_or(&name); - if name.len() == 2 && hex::decode(&name).is_ok() && ent_type.is_dir() { + if name.len() == 2 && hex::decode(name).is_ok() && ent_type.is_dir() { let path = data_dir_ent.path(); self.path.push(ReadingDir::Pending(path)); } else if name.len() == 64 { - if let Ok(h) = hex::decode(&name) { + if let Ok(h) = hex::decode(name) { let mut hash = [0u8; 32]; hash.copy_from_slice(&h); return Ok(Some(hash.into())); |