chore(engine): remove biased select in engine service loop (#21961)

Co-authored-by: Amp <amp@ampcode.com>
Co-authored-by: joshieDo <93316087+joshieDo@users.noreply.github.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-12 00:45:45 -05:00
committed by GitHub
parent 74d57008b6
commit 217a337d8c
2 changed files with 5 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
---
reth-node-builder: patch
---
Removed biased select in engine service loop to allow fair scheduling of shutdown requests alongside event processing.

View File

@@ -303,8 +303,6 @@ impl EngineNodeLauncher {
// the CL
loop {
tokio::select! {
biased;
event = engine_service.next() => {
let Some(event) = event else { break };
debug!(target: "reth::cli", "Event: {event}");