diff --git a/changelog.md b/changelog.md index 824775d0..88d63c46 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 daef7c01..8075ca16 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):