From 74582a09176cc6f415ea07ee578367c4b5d9e4a2 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 26 Sep 2025 09:28:40 -0600 Subject: [PATCH] Squash allocation log in clone --- src/clone.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clone.rs b/src/clone.rs index ea764f019e..67eeb9a99c 100644 --- a/src/clone.rs +++ b/src/clone.rs @@ -71,7 +71,7 @@ pub fn clone( clone_at(tx_old, TreePtr::root(), fs, TreePtr::root(), &mut buf)?; // Squash alloc log - //TODO tx.sync(true)?; + fs.tx(|tx| tx.sync(true))?; Ok(()) })