Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion code/crates/engine/src/wal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(());
}

Expand Down