Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,12 @@ public Mono<Void> handle(WebSocketSession proxySession) {
+ ", corresponding session:" + session.getId() + ", packet: "
+ webSocketMessage.getPayloadAsText());
}
}).doOnError(throwable -> {
if (log.isWarnEnabled()) {
log.warn("Error receiving WebSocket message from client session: "
+ session.getId() + ", proxySession: "
+ proxySession.getId(), throwable);
}
}));
// .log("proxySessionSend", Level.FINE);
Mono<Void> serverSessionSend = session
Expand All @@ -271,6 +277,12 @@ public Mono<Void> handle(WebSocketSession proxySession) {
+ ", corresponding proxySession:" + proxySession.getId() + " packet: "
+ webSocketMessage.getPayloadAsText());
}
}).doOnError(throwable -> {
if (log.isWarnEnabled()) {
log.warn("Error receiving WebSocket message from backend proxySession: "
+ proxySession.getId() + ", session: "
+ session.getId(), throwable);
}
}));
Comment thread
fru1tworld marked this conversation as resolved.
// .log("sessionSend", Level.FINE);
// Ensure closeStatus from one propagates to the other
Expand Down
Loading