From 8fa454f58f6a5e7b85f8877412e5c07c833c01e8 Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Sat, 28 Jan 2023 20:44:58 +0100 Subject: [PATCH] fix: remove ssh timeout option on windows (#2072) --- CHANGELOG.md | 1 + lapce-data/src/proxy.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fec005b9..48e141d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ - [#1971](https://github.com/lapce/lapce/pull/1971): Fix up/down movement on first/last line - [#2036](https://github.com/lapce/lapce/pull/2036): Fix movement on selections with up/down arrow keys - [#2056](https://github.com/lapce/lapce/pull/2056): Fix default directory of remote session file picker +- [#2072](https://github.com/lapce/lapce/pull/2072): Fix connection issues from Windows to lapce proxy ## 0.2.5 diff --git a/lapce-data/src/proxy.rs b/lapce-data/src/proxy.rs index fe69d637..5102667e 100644 --- a/lapce-data/src/proxy.rs +++ b/lapce-data/src/proxy.rs @@ -812,7 +812,7 @@ struct SshRemote { impl SshRemote { #[cfg(windows)] - const SSH_ARGS: &'static [&'static str] = &["-o", "ConnectTimeout=15"]; + const SSH_ARGS: &'static [&'static str] = &[]; #[cfg(unix)] const SSH_ARGS: &'static [&'static str] = &[