Skip to content

Commit ccd9523

Browse files
committed
fixes
Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 48745b7 commit ccd9523

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rsocket-core/src/main/java/io/rsocket/core/RSocketRequester.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class RSocketRequester extends RequesterResponderSupport implements RSocket {
109109
// DO NOT Change the order here. The Send processor must be subscribed to before receiving
110110
connection
111111
.onClose()
112-
.contextWrite(Context.of("tag", "requester"))
112+
.contextWrite(Context.of("tag", "requester " + connection))
113113
.subscribe(null, this::tryShutdown, this::tryShutdown);
114114
onGracefulShutdownDone.subscribe(null, null, connection::dispose);
115115

rsocket-core/src/main/java/io/rsocket/core/RSocketResponder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class RSocketResponder extends RequesterResponderSupport implements RSocket {
9494

9595
connection
9696
.onClose()
97-
.contextWrite(Context.of("tag", "responder"))
97+
.contextWrite(Context.of("tag", "responder " + connection))
9898
.subscribe(null, this::tryTerminateOnConnectionError, this::tryTerminateOnConnectionClose);
9999

100100
onRequesterGracefulShutdownStarted.subscribe(null, null, this::onGracefulShutdownStarted);

0 commit comments

Comments
 (0)