chore(tvix/store/grpcblobsvc): clippy lint
Change-Id: Idb78e0417a962599cdfdef5e7346f7fa41e3fa1b Reviewed-on: https://cl.tvl.fyi/c/depot/+/8320 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
23ddf49229
commit
985f842e32
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ impl<
|
|||
// that's required for all implementations of ChunkService.
|
||||
// TODO: handle error
|
||||
let chunkmeta_digest = &chunkmeta.digest.try_into().unwrap();
|
||||
let res = match chunk_client.get(&chunkmeta_digest) {
|
||||
let res = match chunk_client.get(chunkmeta_digest) {
|
||||
Err(e) => Err(e.into()),
|
||||
// TODO: make this a separate error type
|
||||
Ok(None) => Err(Error::StorageError(format!(
|
||||
|
|
Loading…
Reference in a new issue