diff options
Diffstat (limited to 'tvix/castore/src/blobservice/grpc.rs')
-rw-r--r-- | tvix/castore/src/blobservice/grpc.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tvix/castore/src/blobservice/grpc.rs b/tvix/castore/src/blobservice/grpc.rs index 9230abaf346f..632acef158e2 100644 --- a/tvix/castore/src/blobservice/grpc.rs +++ b/tvix/castore/src/blobservice/grpc.rs @@ -13,7 +13,7 @@ use tokio_util::{ sync::PollSender, }; use tonic::{async_trait, transport::Channel, Code, Status}; -use tracing::{instrument, warn}; +use tracing::instrument; /// Connects to a (remote) tvix-store BlobService over gRPC. #[derive(Clone)] @@ -161,9 +161,6 @@ impl BlobService for GRPCBlobService { resp.validate() .map_err(|e| std::io::Error::new(io::ErrorKind::InvalidData, e))?; - if resp.chunks.is_empty() { - warn!("chunk list is empty"); - } Ok(Some(resp.chunks)) } } |