From 2313e4dbe56d1017639857696dee77a940beee56 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 18 Jan 2021 08:52:12 +0100 Subject: [PATCH] Don't kill a DnsExchangeBackground if a receiver is gone (see #1276) --- crates/proto/src/xfer/dns_exchange.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/proto/src/xfer/dns_exchange.rs b/crates/proto/src/xfer/dns_exchange.rs index 2194cfda1f..c343a1182b 100644 --- a/crates/proto/src/xfer/dns_exchange.rs +++ b/crates/proto/src/xfer/dns_exchange.rs @@ -196,10 +196,6 @@ where Ok(()) => (), Err(_) => { warn!("failed to associate send_message response to the sender"); - - return Poll::Ready(Err( - "failed to associate send_message response to the sender".into(), - )); } } }