From 352b122166be02f642fc9b1f0a6f806bb1e5c86c Mon Sep 17 00:00:00 2001 From: Owen Date: Fri, 16 Jan 2026 15:17:20 -0800 Subject: [PATCH] Use the right duration --- olm/olm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/olm/olm.go b/olm/olm.go index bc06602..f6e1980 100644 --- a/olm/olm.go +++ b/olm/olm.go @@ -313,7 +313,7 @@ func (o *Olm) StartTunnel(config TunnelConfig) { userToken, config.OrgID, config.Endpoint, - 30, // 30 seconds + 30 * time.Second, // 30 seconds config.PingTimeoutDuration, websocket.WithPingDataProvider(func() map[string]any { o.metaMu.Lock()