diff options
| author | Emīls <emils@mullvad.net> | 2020-11-27 14:27:15 +0000 |
|---|---|---|
| committer | Emīls <emils@mullvad.net> | 2020-11-30 11:16:40 +0000 |
| commit | df9c3527fb265adc8d9366f608f59780aac27157 (patch) | |
| tree | 4c59d99e3b75884dd42f6de92e7183411f0ea0f7 /talpid-core/src | |
| parent | 2245c9c286124e490f12cb1d34da74723d5b1c49 (diff) | |
| download | mullvadvpn-df9c3527fb265adc8d9366f608f59780aac27157.tar.xz mullvadvpn-df9c3527fb265adc8d9366f608f59780aac27157.zip | |
Log less about time outs when connecting via wg
Diffstat (limited to 'talpid-core/src')
| -rw-r--r-- | talpid-core/src/tunnel_state_machine/connecting_state.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/talpid-core/src/tunnel_state_machine/connecting_state.rs b/talpid-core/src/tunnel_state_machine/connecting_state.rs index 614d82e233..60e836a4da 100644 --- a/talpid-core/src/tunnel_state_machine/connecting_state.rs +++ b/talpid-core/src/tunnel_state_machine/connecting_state.rs @@ -168,6 +168,12 @@ impl ConnectingState { ); Some(ErrorStateCause::VirtualAdapterProblem) } + tunnel::Error::WireguardTunnelMonitoringError( + tunnel::wireguard::Error::TimeoutError, + ) => { + log::debug!("WireGuard tunnel timed out"); + None + } error => { warn!( "{}", |
