Yujia Qiao 4 éve
szülő
commit
2de9147a0f
1 módosított fájl, 1 hozzáadás és 4 törlés
  1. 1 4
      src/client.rs

+ 1 - 4
src/client.rs

@@ -392,10 +392,7 @@ impl<T: 'static + Transport> ControlChannel<T> {
 
         // Read hello
         debug!("Reading hello");
-        let nonce = match read_hello(&mut conn)
-            .await
-            .with_context(|| "Failed to read hello from the server")?
-        {
+        let nonce = match read_hello(&mut conn).await? {
             ControlChannelHello(_, d) => d,
             _ => {
                 bail!("Unexpected type of hello");