From 8cda6a97267dcf42e5d740fd1fe9c0fb6832b45a Mon Sep 17 00:00:00 2001 From: Omar Date: Tue, 15 Jul 2025 13:22:54 +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 6465284..939c156 100644 --- a/crates/node-interaction/src/blocking_executor.rs +++ b/crates/node-interaction/src/blocking_executor.rs @@ -69,7 +69,6 @@ impl BlockingExecutor { response_tx: response_channel, }) = rx.recv().await { - // Spawn off each job so that the receive loop is not blocked. tracing::trace!("Received a new future to execute"); tokio::spawn(async move { let task = AssertUnwindSafe(task).catch_unwind();