diff --git a/crates/remote_server/src/server.rs b/crates/remote_server/src/server.rs index 189ee7b3bd99dc95c61e472fbb3b873eeaff5778..53aebcf198dd498c5a80008c0b3cafac806f7a33 100644 --- a/crates/remote_server/src/server.rs +++ b/crates/remote_server/src/server.rs @@ -297,7 +297,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::();