Switch to Reactor Netty 2 snapshots
Update to Reactor BOM 2022.0.0-SNAPSHOT. Process package changes. Adapt to new `HttpHeaders` API. Adapt to new cookies API. See gh-29247
This commit is contained in:
committed by
rstoyanchev
parent
1b1682eacd
commit
b5adae2086
@@ -863,7 +863,7 @@ class WebClientIntegrationTests {
|
||||
@ParameterizedWebClientTest
|
||||
void statusHandlerSuppressedErrorSignalWithFlux(ClientHttpConnector connector) {
|
||||
|
||||
// Temporarily disabled, leads to io.netty5.buffer.api.BufferClosedException
|
||||
// Temporarily disabled, leads to io.netty5.buffer.BufferClosedException
|
||||
if (connector instanceof ReactorNetty2ClientHttpConnector) {
|
||||
return;
|
||||
}
|
||||
@@ -1188,7 +1188,7 @@ class WebClientIntegrationTests {
|
||||
|
||||
prepareResponse(response -> response
|
||||
.setHeader("Content-Type", "text/plain")
|
||||
.addHeader("Set-Cookie", "testkey1=testvalue1;")
|
||||
.addHeader("Set-Cookie", "testkey1=testvalue1") // TODO invalid ";" at the end
|
||||
.addHeader("Set-Cookie", "testkey2=testvalue2; Max-Age=42; HttpOnly; SameSite=Lax; Secure")
|
||||
.setBody("test"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user