File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
rsocket-core/src/main/java/io/rsocket/keepalive Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ subprojects {
116
116
117
117
systemProperty " io.netty.leakDetection.level" , " ADVANCED"
118
118
}
119
+
120
+ tasks. named(" javadoc" ). configure {
121
+ onlyIf { System . getenv(' SKIP_RELEASE' ) != " true" }
122
+ }
119
123
}
120
124
121
125
plugins. withType(JavaLibraryPlugin ) {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public KeepAliveFramesAcceptor start(
25
25
KeepAliveSupport keepAliveSupport ,
26
26
Consumer <ByteBuf > onSendKeepAliveFrame ,
27
27
Consumer <KeepAlive > onTimeout ) {
28
- duplexConnection .onClose ().subscribe ( v -> keepAliveSupport .stop ());
28
+ duplexConnection .onClose ().doFinally ( s -> keepAliveSupport .stop ()). subscribe ( );
29
29
return keepAliveSupport
30
30
.onSendKeepAliveFrame (onSendKeepAliveFrame )
31
31
.onTimeout (onTimeout )
You can’t perform that action at this time.
0 commit comments