fix(events): handle PipelineEvent::Unwound to clean up current_stage (#22340)

This commit is contained in:
radik878
2026-02-19 15:48:57 +02:00
committed by GitHub
parent 6cd56b645b
commit dcc5d9ec30

View File

@@ -206,6 +206,10 @@ impl NodeState {
self.current_stage = Some(current_stage);
}
PipelineEvent::Unwound { stage_id, result } => {
info!(stage = %stage_id, checkpoint = %result.checkpoint.block_number, "Unwound stage");
self.current_stage = None;
}
_ => (),
}
}