From fde303f5493a4eac8adf19612c389e2b09aaaa1f Mon Sep 17 00:00:00 2001 From: Omar Date: Tue, 15 Jul 2025 13:23:56 +0300 Subject: [PATCH] Update crates/node-interaction/src/blocking_executor.rs Co-authored-by: xermicus --- crates/node-interaction/src/blocking_executor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/node-interaction/src/blocking_executor.rs b/crates/node-interaction/src/blocking_executor.rs index 1150081..b354c45 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -100,7 +100,6 @@ impl BlockingExecutor { anyhow::bail!("Failed to send the task to the blocking executor: {error:?}") } - // Await for the result of the execution to come back over the channel. let result = match response_rx.blocking_recv() { Ok(result) => result, Err(error) => {