From db996b6adebec770338f4dd3a67edcb8467b68be Mon Sep 17 00:00:00 2001 From: kirdatatjana Date: Thu, 18 Sep 2025 09:35:49 +0200 Subject: [PATCH] Added missing reply sending --- code/crates/engine/src/wal.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/crates/engine/src/wal.rs b/code/crates/engine/src/wal.rs index a9a0e9a86..db7b244c9 100644 --- a/code/crates/engine/src/wal.rs +++ b/code/crates/engine/src/wal.rs @@ -84,7 +84,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(()); }