From 467cbe409eaeb12b80ec6805e662a3ef537b3503 Mon Sep 17 00:00:00 2001 From: yuanyuyuan Date: Tue, 3 Oct 2023 17:32:38 +0800 Subject: [PATCH] Fix the wrong result type --- io/zenoh-links/zenoh-link-tcp/src/unicast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io/zenoh-links/zenoh-link-tcp/src/unicast.rs b/io/zenoh-links/zenoh-link-tcp/src/unicast.rs index ad62a9ee9a..dc9e210304 100644 --- a/io/zenoh-links/zenoh-link-tcp/src/unicast.rs +++ b/io/zenoh-links/zenoh-link-tcp/src/unicast.rs @@ -335,7 +335,7 @@ impl LinkManagerUnicastTrait for LinkManagerUnicastTcp { } }; #[cfg(not(any(target_os = "android", target_os = "fuchsia", target_os = "linux")))] - let connection = self.new_listener_inner(&da).await?; + let connection = self.new_listener_inner(&da).await; match connection { Ok((socket, local_addr)) => {