1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00

ssh domains: use default local echo threshol

The implementation of this is a bit gnarly, because we have
an optional value with a default that *is* populated by the
dynamic config stuff, but that isn't part of the derive(Debug)
impl.

closes: https://github.com/wez/wezterm/issues/5547
This commit is contained in:
Wez Furlong 2024-07-15 07:27:46 -07:00
parent fe17be2973
commit ae9cdad228
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 4 additions and 0 deletions

View File

@ -119,6 +119,7 @@ impl SshDomain {
name: format!("SSH:{host}"),
remote_address: host.to_string(),
multiplexing: SshMultiplexing::None,
local_echo_threshold_ms: default_local_echo_threshold_ms(),
..SshDomain::default()
});
@ -126,6 +127,7 @@ impl SshDomain {
name: format!("SSHMUX:{host}"),
remote_address: host.to_string(),
multiplexing: SshMultiplexing::WezTerm,
local_echo_threshold_ms: default_local_echo_threshold_ms(),
..SshDomain::default()
});
}

View File

@ -93,6 +93,8 @@ As features stabilize some brief notes about them will accumulate here.
`pixel_height`.
* ssh: we now explicitly kill and reap the `ProxyCommand` associated
with an ssh session. Thanks to @daaku! #5494 #5479
* `default_ssh_domains()` didn't use the default local echo threshold
for ssh domains. #5547
#### Updated
* Bundled conpty.dll and OpenConsole.exe to build 1.19.240130002.nupkg