diff --git a/easytier/src/dns/peer_mgr.rs b/easytier/src/dns/peer_mgr.rs index 7114d1ec..3418e205 100644 --- a/easytier/src/dns/peer_mgr.rs +++ b/easytier/src/dns/peer_mgr.rs @@ -41,11 +41,11 @@ const DNS_PEER_TTL: Duration = Duration::from_secs(3); #[derive(Debug, Deref)] pub struct DnsPeerMgr { - #[deref] - mgr: Arc, - peers: Cache, pub(super) dirty: AtomicBool, + + #[deref] + mgr: Arc, } impl DnsPeerMgr {