Ignore error when sending goodbye

This commit is contained in:
Alex 2021-10-25 13:58:42 +02:00
parent bb4ddf3b61
commit c20d36892b
No known key found for this signature in database
GPG key ID: EDABF9711E244EB1

View file

@ -161,7 +161,7 @@ pub(crate) trait SendLoop: Sync {
} }
} }
} }
write.goodbye().await?; let _ = write.goodbye().await;
Ok(()) Ok(())
} }
} }