diff options
author | Florian Klink <flokli@flokli.de> | 2023-10-12T13·42+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-10-14T12·26+0000 |
commit | 199e5e0339ee7d58f9e8a6958c8f9aad5b82e26d (patch) | |
tree | 9fab43f05adac8dd68420d7b9456a51f3e6d2276 /tvix/castore/src/blobservice | |
parent | 0b18be3b57a80e8b02488cf860fdf15981f2f547 (diff) |
refactor(tvix/*store): remove some grpc_client let bindings r/6800
We had to have these all while the traits where sync, and there was a lot of spawning and moving. Most of this can now be removed in favor of some inline `.clone()`. Change-Id: Id5466c32a403100bc3347866b3172e06a792e311 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9705 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/castore/src/blobservice')
-rw-r--r-- | tvix/castore/src/blobservice/grpc.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tvix/castore/src/blobservice/grpc.rs b/tvix/castore/src/blobservice/grpc.rs index 115efa5f09c6..52adf2c6dde5 100644 --- a/tvix/castore/src/blobservice/grpc.rs +++ b/tvix/castore/src/blobservice/grpc.rs @@ -112,12 +112,11 @@ impl BlobService for GRPCBlobService { &self, digest: &B3Digest, ) -> Result<Option<Box<dyn BlobReader>>, crate::Error> { - // Get a new handle to the gRPC client, and copy the digest. - let mut grpc_client = self.grpc_client.clone(); - // Get a stream of [proto::BlobChunk], or return an error if the blob // doesn't exist. - let resp = grpc_client + let resp = self + .grpc_client + .clone() .read(proto::ReadBlobRequest { digest: digest.clone().into(), }) |