Skip to content

Commit d7d9a89

Browse files
committed
fixes
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 3bc7ed5 commit d7d9a89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rsocket-transport-netty/src/main/java/io/rsocket/transport/netty/TcpDuplexConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public TcpDuplexConnection(Connection connection) {
5656
// if (!isDisposed()) dispose();
5757
// });
5858

59-
connection.outbound().send(sender).then().subscribe();
59+
connection.outbound().send(sender.log("queue " + this)).then().subscribe();
6060
}
6161

6262
@Override

rsocket-transport-netty/src/main/java/io/rsocket/transport/netty/WebsocketDuplexConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public WebsocketDuplexConnection(Connection connection) {
6060
// if (!isDisposed()) dispose();
6161
// });
6262

63-
connection.outbound().sendObject(sender.map(BinaryWebSocketFrame::new)).then().subscribe();
63+
connection.outbound().sendObject(sender.map(BinaryWebSocketFrame::new).log("queue " + this)).then().subscribe();
6464
}
6565

6666
@Override

0 commit comments

Comments
 (0)