adding todo

This commit is contained in:
Ahmed Ibrahim
2025-07-20 18:15:13 -07:00
parent 24e05336f4
commit 79dce68a0b

View File

@@ -300,6 +300,7 @@ async fn rollout_writer(
let mut buf = serde_json::to_vec(value)?;
buf.push(b'\n');
file.write_all(&buf).await?;
// TODO: decide if we want to flush here or TaskComplete is enough.
file.flush().await?;
Ok(())
}