From 5f75db94e066112fdfbe9163f0814b2390415d9c Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Sat, 5 Sep 2026 13:04:01 -0400 Subject: [PATCH] raise Boundary tunnel stabilization pause to 0.2s after observing one transient connection failure. This value was previously 0.25 with no observed failures, so the new value of 0.2 is probably right. --- changelog.md | 8 ++++++++ mycli/boundary_tunnel.py | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 824775d0b..88d63c461 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,11 @@ +Upcoming (TBD) +============== + +Bug Fixes +-------- +* Raise Boundary tunnel stabilization pause to 0.2 sec. + + 2.20.0 (2026/09/05) ============== diff --git a/mycli/boundary_tunnel.py b/mycli/boundary_tunnel.py index daef7c014..8075ca168 100644 --- a/mycli/boundary_tunnel.py +++ b/mycli/boundary_tunnel.py @@ -17,8 +17,8 @@ # This should be as small as possible and yet still # ward off SSL errors at connection time. We know -# that 0.1 is too small on at least one Mac. -TUNNEL_STABILIZATION_PAUSE = 0.15 +# that 0.15 is too small on at least one Mac. +TUNNEL_STABILIZATION_PAUSE = 0.20 class BoundaryTunnelError(RuntimeError):