#1790 - Upgrade to Reactor 2022.0.0 M2.

This commit is contained in:
Oliver Drotbohm
2022-05-12 20:54:00 +02:00
parent f69e4fbdc4
commit f4f7f69e1f
2 changed files with 3 additions and 2 deletions

View File

@@ -82,7 +82,7 @@
<jsonpath.version>2.6.0</jsonpath.version>
<junit.version>5.8.1</junit.version>
<lombok.version>1.18.22</lombok.version>
<reactor-bom.version>2020.0.19</reactor-bom.version>
<reactor-bom.version>2022.0.0-M2</reactor-bom.version>
<slf4j.version>1.7.32</slf4j.version>
<spring.version>6.0.0-M4</spring.version>
<spring-plugin.version>3.0.0-M1</spring-plugin.version>

View File

@@ -246,7 +246,8 @@ class WebFluxLinkBuilderTest {
if (request != null) {
when(this.exchange.getRequest()).thenReturn(request);
mono = mono.subscriberContext(Context.of(EXCHANGE_CONTEXT_ATTRIBUTE, this.exchange));
mono = mono.contextWrite(Context.of(EXCHANGE_CONTEXT_ATTRIBUTE, this.exchange));
}
mono.as(StepVerifier::create).expectNextMatches(signal -> {