Upgrade to Reactor Bismuth snapshots

Towards SR13 to confirm fix for SPR-17306.
This commit is contained in:
Rossen Stoyanchev
2018-10-23 15:49:09 -04:00
parent 6ea3441adf
commit bf4d00cb62
3 changed files with 7 additions and 4 deletions

View File

@@ -70,8 +70,7 @@ public class ReactorNettyWebSocketSession
@Override
public Mono<Void> close(CloseStatus status) {
WebSocketFrame closeFrame = new CloseWebSocketFrame(status.getCode(), status.getReason());
return getDelegate().getOutbound().sendObject(closeFrame).then();
return getDelegate().getOutbound().sendClose(status.getCode(), status.getReason());
}