From 0690a11fb640410605e786a076680c926134e14e Mon Sep 17 00:00:00 2001 From: Joseph Perez Date: Wed, 11 Dec 2024 11:09:08 +0100 Subject: [PATCH] fix: lint --- io/zenoh-transport/src/multicast/tx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/zenoh-transport/src/multicast/tx.rs b/io/zenoh-transport/src/multicast/tx.rs index 4bd02c125..dec3f4a8a 100644 --- a/io/zenoh-transport/src/multicast/tx.rs +++ b/io/zenoh-transport/src/multicast/tx.rs @@ -59,7 +59,7 @@ impl TransportMulticastInner { { if let Err(e) = map_zmsg_to_partner(&mut msg, &self.shm) { tracing::trace!("Failed SHM conversion: {}", e); - return false; + return Ok(false); } }