about summary refs log tree commit diff
path: root/tvix/store/src
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src')
-rw-r--r--tvix/store/src/chunkservice/memory.rs10
-rw-r--r--tvix/store/src/tests/utils.rs2
2 files changed, 2 insertions, 10 deletions
diff --git a/tvix/store/src/chunkservice/memory.rs b/tvix/store/src/chunkservice/memory.rs
index 1ae8b9130565..8364e434461f 100644
--- a/tvix/store/src/chunkservice/memory.rs
+++ b/tvix/store/src/chunkservice/memory.rs
@@ -9,19 +9,11 @@ use crate::Error;
 
 use super::ChunkService;
 
-#[derive(Clone)]
+#[derive(Clone, Default)]
 pub struct MemoryChunkService {
     db: Arc<RwLock<HashMap<Vec<u8>, Vec<u8>>>>,
 }
 
-impl MemoryChunkService {
-    pub fn new() -> Self {
-        let db = Arc::new(RwLock::new(HashMap::default()));
-
-        Self { db }
-    }
-}
-
 impl ChunkService for MemoryChunkService {
     #[instrument(skip(self, digest), fields(chunk.digest=BASE64.encode(digest)))]
     fn has(&self, digest: &[u8]) -> Result<bool, Error> {
diff --git a/tvix/store/src/tests/utils.rs b/tvix/store/src/tests/utils.rs
index 6cf888c9d666..0a4f5afb76e4 100644
--- a/tvix/store/src/tests/utils.rs
+++ b/tvix/store/src/tests/utils.rs
@@ -10,7 +10,7 @@ pub fn gen_blob_service() -> impl BlobService + Send + Sync + Clone + 'static {
 }
 
 pub fn gen_chunk_service() -> impl ChunkService + Clone {
-    MemoryChunkService::new()
+    MemoryChunkService::default()
 }
 
 pub fn gen_directory_service() -> impl DirectoryService + Send + Sync + Clone + 'static {