cargo fmt

This commit is contained in:
asonix 2023-12-05 12:57:51 -06:00
parent 7f153c6430
commit de58e41ed4

View file

@ -653,7 +653,10 @@ where
}
let Some(main_identifier) = repo.identifier::<FileId>(hash.clone()).await? else {
tracing::warn!("Missing identifier for hash {}, queueing cleanup", hex::encode(&hash));
tracing::warn!(
"Missing identifier for hash {}, queueing cleanup",
hex::encode(&hash)
);
crate::queue::cleanup_hash(repo, hash.clone()).await?;
return Err(RepoError::Missing("hash -> identifier").into());
};