diff --git a/code/crates/engine/src/wal.rs b/code/crates/engine/src/wal.rs index 45a56cff6..216cffcb9 100644 --- a/code/crates/engine/src/wal.rs +++ b/code/crates/engine/src/wal.rs @@ -85,7 +85,10 @@ where match msg { Msg::StartedHeight(height, reply_to) => { if state.height == height { - debug!(%height, "WAL already at height, ignoring"); + debug!(%height, "WAL already at height, returning empty entries"); + reply_to + .send(Ok(None)) + .map_err(|e| eyre!("Failed to send reply: {e}"))?; return Ok(()); }