fixup! fixup! Update go.mod and go.sum

This commit is contained in:
2025-11-05 20:28:31 +00:00
parent e36cdf099e
commit f864e8edcf
+3 -1
View File
@@ -89,7 +89,9 @@ func (wsp *WebSocketProxy) HandleWebSocket(c *fiber.Ctx) error {
}
return websocket.New(func(clientConn *websocket.Conn) {
wsp.handleConnection(c.Context(), clientConn)
// Use background context for long-lived WebSocket connections
// The original request context expires after the upgrade
wsp.handleConnection(context.Background(), clientConn)
})(c)
}