about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/castore/src/blobservice/object_store.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/castore/src/blobservice/object_store.rs b/tvix/castore/src/blobservice/object_store.rs
index 04fb9360b4..d2d0a288a5 100644
--- a/tvix/castore/src/blobservice/object_store.rs
+++ b/tvix/castore/src/blobservice/object_store.rs
@@ -149,6 +149,7 @@ impl BlobService for ObjectStoreBlobService {
             .await
         {
             Ok(res) => {
+                // handle reading blobs that are small enough to fit inside a single chunk:
                 // fetch the entire chunk into memory, decompress, ensure the b3 digest matches,
                 // and return a io::Cursor over that data.
                 // FUTUREWORK: use zstd::bulk to prevent decompression bombs