From 5e218f3f4daf1594580eb377183770fd4a206a5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Mon, 2 Dec 2024 10:44:42 +0100 Subject: [PATCH] Remove a sync_all (mark my words) --- crates/milli/src/update/new/channel.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/milli/src/update/new/channel.rs b/crates/milli/src/update/new/channel.rs index 631fcf74e..219f20854 100644 --- a/crates/milli/src/update/new/channel.rs +++ b/crates/milli/src/update/new/channel.rs @@ -489,7 +489,6 @@ impl<'b> ExtractorBbqueueSender<'b> { } let value_file = value_file.into_inner().map_err(|ie| ie.into_error())?; - value_file.sync_all()?; let embeddings = unsafe { Mmap::map(&value_file)? }; let large_vectors = LargeVectors { docid, embedder_id, embeddings };