diff --git a/zed/src/rpc.rs b/zed/src/rpc.rs index 1ac9c40161b1e9f3074c0abe52014212466fbbe1..501779c2b027913126b09a82f43bbde415bbc6c2 100644 --- a/zed/src/rpc.rs +++ b/zed/src/rpc.rs @@ -141,7 +141,7 @@ impl Client { state._maintain_connection = Some(cx.foreground().spawn(async move { loop { foreground.timer(heartbeat_interval).await; - this.request(proto::Ping {}).await.unwrap(); + let _ = this.request(proto::Ping {}).await; } })); }