Skip to content

Commit 77da40f

Browse files
committed
Upgrade to Coroutines 1.3.0
Closes gh-23535
1 parent 5297624 commit 77da40f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ext {
1919
moduleProjects = subprojects.findAll { it.name.startsWith("spring-") }
2020

2121
aspectjVersion = "1.9.4"
22-
coroutinesVersion = "1.3.0-RC2"
22+
coroutinesVersion = "1.3.0"
2323
freemarkerVersion = "2.3.28"
2424
groovyVersion = "2.5.7"
2525
hsqldbVersion = "2.5.0"

spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ void registerAdapters(ReactiveAdapterRegistry registry) {
349349

350350
registry.registerReactiveType(
351351
ReactiveTypeDescriptor.multiValue(kotlinx.coroutines.flow.Flow.class, kotlinx.coroutines.flow.FlowKt::emptyFlow),
352-
source -> kotlinx.coroutines.reactor.FlowKt.asFlux((kotlinx.coroutines.flow.Flow<?>) source),
353-
kotlinx.coroutines.reactive.FlowKt::asFlow
352+
source -> kotlinx.coroutines.reactor.ReactorFlowKt.asFlux((kotlinx.coroutines.flow.Flow<?>) source),
353+
kotlinx.coroutines.reactive.ReactiveFlowKt::asFlow
354354
);
355355
}
356356
}

0 commit comments

Comments
 (0)