File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed
rsocket-core/src/test/java/io/rsocket/core Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 16
16
17
17
plugins {
18
18
id ' com.github.sherter.google-java-format' version ' 0.8' apply false
19
- id ' com.jfrog.artifactory' version ' 4.11.0 ' apply false
20
- id ' com.jfrog.bintray' version ' 1.8.4 ' apply false
19
+ id ' com.jfrog.artifactory' version ' 4.15.2 ' apply false
20
+ id ' com.jfrog.bintray' version ' 1.8.5 ' apply false
21
21
id ' me.champeau.gradle.jmh' version ' 0.5.0' apply false
22
- id ' io.spring.dependency-management' version ' 1.0.8 .RELEASE' apply false
22
+ id ' io.spring.dependency-management' version ' 1.0.9 .RELEASE' apply false
23
23
id ' io.morethan.jmhreport' version ' 0.9.0' apply false
24
24
}
25
25
26
26
subprojects {
27
27
apply plugin : ' io.spring.dependency-management'
28
28
apply plugin : ' com.github.sherter.google-java-format'
29
29
30
- ext[' reactor-bom.version' ] = ' Dysprosium-SR7 '
30
+ ext[' reactor-bom.version' ] = ' Dysprosium-SR8 '
31
31
ext[' logback.version' ] = ' 1.2.3'
32
32
ext[' findbugs.version' ] = ' 3.0.2'
33
- ext[' netty-bom.version' ] = ' 4.1.48 .Final'
33
+ ext[' netty-bom.version' ] = ' 4.1.50 .Final'
34
34
ext[' netty-boringssl.version' ] = ' 2.0.30.Final'
35
35
ext[' hdrhistogram.version' ] = ' 2.1.10'
36
36
ext[' mockito.version' ] = ' 3.2.0'
Original file line number Diff line number Diff line change
1
+ # Mon Jun 08 20:22:21 EEST 2020
2
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.5-all.zip
1
3
distributionBase =GRADLE_USER_HOME
2
4
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.3-bin.zip
4
- zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
+ zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -468,7 +468,12 @@ public Flux<Payload> requestChannel(Publisher<Payload> payloads) {
468
468
.assertTerminated ()
469
469
.assertError (CancellationException .class )
470
470
.assertErrorMessage ("Disposed" );
471
- Assertions .assertThat (assertSubscriber .values ()).allMatch (ReferenceCounted ::release );
471
+ Assertions .assertThat (assertSubscriber .values ())
472
+ .allMatch (
473
+ msg -> {
474
+ ReferenceCountUtil .safeRelease (msg );
475
+ return msg .refCnt () == 0 ;
476
+ });
472
477
rule .assertHasNoLeaks ();
473
478
}
474
479
}
You can’t perform that action at this time.
0 commit comments