Skip to content

Commit 18a22a0

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

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ 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 " + connection))
112+
.contextWrite(Context.of("tag", "requester"))
113+
.log("requester " + connection)
113114
.subscribe(null, this::tryShutdown, this::tryShutdown);
114115
onGracefulShutdownDone.subscribe(null, null, connection::dispose);
115116

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ class RSocketResponder extends RequesterResponderSupport implements RSocket {
9595
connection
9696
.onClose()
9797
.contextWrite(Context.of("tag", "responder " + connection))
98+
.log("responder " + connection)
9899
.subscribe(null, this::tryTerminateOnConnectionError, this::tryTerminateOnConnectionClose);
99100

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

0 commit comments

Comments
 (0)