hotfix(openvpn): bump hand-window from 10s to 20s

This commit is contained in:
Quentin McGaw
2026-05-08 16:12:13 +00:00
parent 891249849a
commit 445f99d9dc
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ Your credentials might be wrong 🤨
`
level = levelError
case strings.Contains(s, "TLS Error: TLS key negotiation failed to occur within 60 seconds (check your network connectivity)"): //nolint:lll
case strings.Contains(s, "TLS Error: TLS key negotiation failed to occur within 20 seconds (check your network connectivity)"): //nolint:lll
filtered = s + `
🚒🚒🚒🚒🚒🚨🚨🚨🚨🚨🚨🚒🚒🚒🚒🚒
That error usually happens because either:
+2 -2
View File
@@ -52,9 +52,9 @@ func Test_processLogLine(t *testing.T) {
},
"TLS key negotiation error": {
s: "TLS Error: TLS key negotiation failed to occur within " +
"60 seconds (check your network connectivity)",
"20 seconds (check your network connectivity)",
filtered: "TLS Error: TLS key negotiation failed to occur within " +
"60 seconds (check your network connectivity)" + `
"20 seconds (check your network connectivity)" + `
🚒🚒🚒🚒🚒🚨🚨🚨🚨🚨🚨🚒🚒🚒🚒🚒
That error usually happens because either: