From 1b0cbb1093fd4901f6c759f744ed4fe663c0faf3 Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 15:51:13 +0000 Subject: [PATCH] Fix remote server exit timeout (#47660) (cherry-pick to preview) (#47662) Cherry-pick of #47660 to preview ---- Was changed by mistake Release Notes: - N/A Co-authored-by: Lukas Wirth Co-authored-by: John Tur Co-authored-by: Lukas Wirth --- crates/remote_server/src/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/remote_server/src/unix.rs b/crates/remote_server/src/unix.rs index 5965ad5adbeb2fa8f1108b2dd86ea930b7e3aed1..b88d9ff00421a7e8aa5b919e2906b0d51d935069 100644 --- a/crates/remote_server/src/unix.rs +++ b/crates/remote_server/src/unix.rs @@ -222,7 +222,7 @@ fn start_server( is_wsl_interop: bool, ) -> AnyProtoClient { // This is the server idle timeout. If no connection comes in this timeout, the server will shut down. - const IDLE_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(6); + const IDLE_TIMEOUT: std::time::Duration = std::time::Duration::from_secs(10 * 60); let (incoming_tx, incoming_rx) = mpsc::unbounded::(); let (outgoing_tx, mut outgoing_rx) = mpsc::unbounded::();