From 53725964326b31971ff023f34b4f1658d50e9f5a Mon Sep 17 00:00:00 2001 From: Luna Yao <40349250+ZnqbuZ@users.noreply.github.com> Date: Sun, 22 Feb 2026 01:10:53 +0100 Subject: [PATCH] client: replace spawn_local with spawn --- easytier/src/dns/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easytier/src/dns/client.rs b/easytier/src/dns/client.rs index c996da87..e0832e04 100644 --- a/easytier/src/dns/client.rs +++ b/easytier/src/dns/client.rs @@ -90,6 +90,6 @@ impl DnsClient { let peer_id = peer_info.peer_id; let digest = peer_info.dns.clone(); self.tasks - .spawn_local(async move { mgr.refresh(peer_id, digest).await }); + .spawn(async move { mgr.refresh(peer_id, digest).await }); } }