From c16decd9cd34d80faab08ff48e4d93511152facf Mon Sep 17 00:00:00 2001 From: "Ian Clarke (aider)" Date: Thu, 26 Dec 2024 17:06:02 -0600 Subject: [PATCH] fix: Pin dynamic futures to resolve Unpin trait compilation errors --- crates/core/src/transport/connection_handler.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/core/src/transport/connection_handler.rs b/crates/core/src/transport/connection_handler.rs index bb415b2f7..a7f2d251d 100644 --- a/crates/core/src/transport/connection_handler.rs +++ b/crates/core/src/transport/connection_handler.rs @@ -291,7 +291,7 @@ impl UdpPacketsListener { let task = tokio::spawn({ let span = tracing::span!(tracing::Level::DEBUG, "gateway_connection"); async move { - match gw_ongoing_connection.await { + match Box::pin(gw_ongoing_connection).await { Ok(result) => Ok(result), Err(error) => Err((error, remote_addr)) } @@ -380,7 +380,7 @@ impl UdpPacketsListener { let task = tokio::spawn({ let span = span!(tracing::Level::DEBUG, "traverse_nat"); async move { - match ongoing_connection.await { + match Box::pin(ongoing_connection).await { Ok(result) => Ok(result), Err(error) => Err((error, remote_addr)) }