aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-10-25 13:58:42 +0200
committerAlex Auvolat <alex@adnab.me>2021-10-25 13:58:42 +0200
commitc20d36892bcccae580603249706ba60d54a46d7f (patch)
tree53cf20640bb39578977ae09182e51c353143d110 /src
parentbb4ddf3b61cf0ef1027c11e51c8aa51be9eb2142 (diff)
downloadnetapp-c20d36892bcccae580603249706ba60d54a46d7f.tar.gz
netapp-c20d36892bcccae580603249706ba60d54a46d7f.zip
Ignore error when sending goodbyev0.3.0
Diffstat (limited to 'src')
-rw-r--r--src/proto.rs2
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(())
}
}