-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Closed
Labels
Description
There was a recent change in reactor-core that is causing the snapshot build to fail.
Mono.deferWithContext() was changed from:
Mono.deferWithContext(Function<Context, ? extends Mono<? extends T>> supplier)
to:
Mono.deferWithContext(Function<ContextView, ? extends Mono<? extends T>> supplier)
ContextView was added after 3.4.0-M1 (or 2020.0.0-M1 release train).
Reference Issue reactor-core#2279 and commit.
As a temporary workaround, until a solution is provided, we will force snapshot to build against 2020.0.0-M1.