Skip to content

Commit 6eaef08

Browse files
committed
call requestChannelWith 2 arguments
1 parent 92a4d1d commit 6eaef08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public Flux<Payload> requestChannel(Publisher<Payload> payloads) {
214214
@Override
215215
public Flux<Payload> requestChannel(Payload payload, Publisher<Payload> payloads) {
216216
try {
217-
return responderRSocket.requestChannel(payloads);
217+
return responderRSocket.requestChannel(payload, payloads);
218218
} catch (Throwable t) {
219219
return Flux.error(t);
220220
}

0 commit comments

Comments
 (0)