Update crates/node-interaction/src/blocking_executor.rs

Co-authored-by: xermicus <cyrill@parity.io>
This commit is contained in:
Omar
2025-07-15 13:22:54 +03:00
committed by GitHub
parent a43d94ea7d
commit 8cda6a9726
@@ -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();