replace BTreeMap by BTreeSet and remove id form Entry (#123)

This commit is contained in:
Mahdi
2023-05-16 19:41:54 +03:30
committed by GitHub
parent e1840ec9ef
commit df98a941ac
2 changed files with 12 additions and 27 deletions

View File

@@ -113,7 +113,6 @@ impl Client {
pub async fn ping(&mut self, msg: Option<Bytes>) -> crate::Result<Bytes> {
let frame = Ping::new(msg).into_frame();
debug!(request = ?frame);
self.connection.write_frame(&frame).await?;
match self.read_response().await? {