From c20d36892bcccae580603249706ba60d54a46d7f Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 25 Oct 2021 13:58:42 +0200 Subject: [PATCH] Ignore error when sending goodbye --- src/proto.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto.rs b/src/proto.rs index 47480a9..18e7c44 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -161,7 +161,7 @@ pub(crate) trait SendLoop: Sync { } } } - write.goodbye().await?; + let _ = write.goodbye().await; Ok(()) } }