diff options
author | Alex Auvolat <alex@adnab.me> | 2021-10-25 13:58:42 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-10-25 13:58:42 +0200 |
commit | c20d36892bcccae580603249706ba60d54a46d7f (patch) | |
tree | 53cf20640bb39578977ae09182e51c353143d110 | |
parent | bb4ddf3b61cf0ef1027c11e51c8aa51be9eb2142 (diff) | |
download | netapp-c20d36892bcccae580603249706ba60d54a46d7f.tar.gz netapp-c20d36892bcccae580603249706ba60d54a46d7f.zip |
Ignore error when sending goodbyev0.3.0
-rw-r--r-- | src/proto.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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(()) } } |