Skip to content

Commit b134501

Browse files
committed
Update to Reactor Bismuth-M2
Issue: SPR-15646
1 parent 5e954dc commit b134501

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ configure(allprojects) { project ->
8181
ext.poiVersion = "3.16"
8282
ext.protobufVersion = "3.3.1"
8383
ext.quartzVersion = "2.3.0"
84-
ext.reactorVersion = "Bismuth-M1"
84+
ext.reactorVersion = "Bismuth-M2"
8585
ext.romeVersion = "1.7.3"
8686
ext.rxjavaVersion = '1.3.0'
8787
ext.rxjavaAdapterVersion = '1.2.1'
@@ -389,7 +389,7 @@ project("spring-core") {
389389
optional("io.reactivex:rxjava-reactive-streams:${rxjavaAdapterVersion}")
390390
optional("io.reactivex.rxjava2:rxjava:${rxjava2Version}")
391391
optional("io.netty:netty-buffer")
392-
testCompile("io.projectreactor.addons:reactor-test")
392+
testCompile("io.projectreactor:reactor-test")
393393
testCompile("javax.xml.bind:jaxb-api:${jaxbVersion}")
394394
testCompile("org.apache.tomcat.embed:tomcat-embed-core:${tomcatVersion}")
395395
testCompile("org.xmlunit:xmlunit-matchers:${xmlunitVersion}")
@@ -753,7 +753,7 @@ project("spring-web") {
753753
optional("javax.xml.ws:jaxws-api:${jaxwsVersion}")
754754
optional("javax.mail:javax.mail-api:${javamailVersion}")
755755
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
756-
testCompile("io.projectreactor.addons:reactor-test")
756+
testCompile("io.projectreactor:reactor-test")
757757
testCompile("org.apache.taglibs:taglibs-standard-jstlel:1.2.1") {
758758
exclude group: "org.apache.taglibs", module: "taglibs-standard-spec"
759759
}
@@ -811,7 +811,7 @@ project("spring-webflux") {
811811
}
812812
optional("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
813813
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
814-
testCompile("io.projectreactor.addons:reactor-test")
814+
testCompile("io.projectreactor:reactor-test")
815815
testCompile("javax.validation:validation-api:${beanvalVersion}")
816816
testCompile("org.hibernate:hibernate-validator:${hibvalVersion}")
817817
testCompile("org.apache.tomcat:tomcat-util:${tomcatVersion}")
@@ -1037,7 +1037,7 @@ project("spring-test") {
10371037
optional("com.jayway.jsonpath:json-path:2.2.0")
10381038
optional("org.reactivestreams:reactive-streams")
10391039
optional("io.projectreactor:reactor-core")
1040-
optional("io.projectreactor.addons:reactor-test")
1040+
optional("io.projectreactor:reactor-test")
10411041
testCompile(project(":spring-context-support"))
10421042
testCompile(project(":spring-oxm"))
10431043
testCompile("javax.mail:javax.mail-api:${javamailVersion}")

spring-messaging/src/main/java/org/springframework/messaging/tcp/reactor/AbstractMonoToListenableFutureAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected AbstractMonoToListenableFutureAdapter(Mono<S> mono) {
6262
registry.success(adapted);
6363
})
6464
.doOnError(this.registry::failure)
65-
.subscribe();
65+
.toProcessor();
6666
}
6767

6868

0 commit comments

Comments
 (0)