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
Hi I tried to perform obvious fix for websocket which is dropped after 300 seconds 287333b
But seems that it didn't help. Steps to reproduce the issue:
Create simple websocket application with Jetty.
Perform disabling of session drop on server side.
@OnWebSocketOpenpublicvoidonWebSocketConnect(Sessionsession) {
this.session = session; // save sessionsession.setIdleTimeout(Duration.ZERO); // disable inactive session drop
}
Run jetty on localhost:8080. Launch TeaVM proxy for 9090. Open websocket http://localhost:9090/websocket session in JS. Wait 300 seconds. Session will be closed. When open same websocket on localhost:8080 it is not closed.
The text was updated successfully, but these errors were encountered:
Hi I tried to perform obvious fix for websocket which is dropped after 300 seconds 287333b
But seems that it didn't help. Steps to reproduce the issue:
The text was updated successfully, but these errors were encountered: