File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
transport-parent/transport-netty/src/main/java/io/scalecube/transport/netty Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 2525 <slf4j .version>1.7.7</slf4j .version>
2626 <jackson .version>2.10.0.pr1</jackson .version>
2727 <log4j .version>2.8.2</log4j .version>
28- <reactor .version>Californium-SR8 </reactor .version>
28+ <reactor .version>Dysprosium-RELEASE </reactor .version>
2929
3030 <mockito-junit-jupiter .version>2.27.0</mockito-junit-jupiter .version>
3131 <junit-jupiter .version>5.1.1</junit-jupiter .version>
Original file line number Diff line number Diff line change 3636import reactor .netty .DisposableServer ;
3737import reactor .netty .NettyInbound ;
3838import reactor .netty .NettyOutbound ;
39- import reactor .netty .NettyPipeline .SendOptions ;
4039import reactor .netty .channel .BootstrapHandlers ;
4140import reactor .netty .resources .ConnectionProvider ;
4241import reactor .netty .resources .LoopResources ;
@@ -290,10 +289,7 @@ private Message toMessage(ByteBuf byteBuf) {
290289
291290 private Mono <? extends Void > send0 (Connection conn , Message message ) {
292291 // do send
293- return conn .outbound ()
294- .options (SendOptions ::flushOnEach )
295- .send (Mono .just (message ).map (this ::toByteBuf ))
296- .then ();
292+ return conn .outbound ().send (Mono .just (message ).map (this ::toByteBuf ), bb -> true ).then ();
297293 }
298294
299295 private ByteBuf toByteBuf (Message message ) {
You can’t perform that action at this time.
0 commit comments