You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
UpgradeToWebSocket is deprecated (for years) and will be removed in pekko-http 2.0.0
The supported websocket code in pekko-http is based on request.attribute(AttributeKeys.websocketUpgrade) and this returns a WebSocketUpgrade instance
The handleMessages on WebSocketUpgrade expects a Flow that works with pekko-http ws.Message classes. These ws.Message definitions are similar to the Play WebSocket Message instances.
We probably need to convert the Play Flow that works with Play Messages to a Flow that works with pekko-http ws.Message instances so that we can use WebSocketUpgrade.handleMessages.