We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d9a89 commit ece29b2Copy full SHA for ece29b2
rsocket-transport-netty/src/main/java/io/rsocket/transport/netty/WebsocketDuplexConnection.java
@@ -60,7 +60,11 @@ public WebsocketDuplexConnection(Connection connection) {
60
// if (!isDisposed()) dispose();
61
// });
62
63
- connection.outbound().sendObject(sender.map(BinaryWebSocketFrame::new).log("queue " + this)).then().subscribe();
+ connection
64
+ .outbound()
65
+ .sendObject(sender.map(BinaryWebSocketFrame::new).log("queue " + this))
66
+ .then()
67
+ .subscribe();
68
}
69
70
@Override
0 commit comments