Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
492e1a4c
Commit
492e1a4c
authored
Sep 14, 2020
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Netty 4.1.52.Final
Closes gh-23269
parent
3bd4337a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
pom.xml
spring-boot-project/spring-boot-dependencies/pom.xml
+1
-1
AbstractReactiveWebServerFactoryTests.java
...eactive/server/AbstractReactiveWebServerFactoryTests.java
+5
-1
No files found.
spring-boot-project/spring-boot-dependencies/pom.xml
View file @
492e1a4c
...
@@ -142,7 +142,7 @@
...
@@ -142,7 +142,7 @@
<mysql.version>
8.0.21
</mysql.version>
<mysql.version>
8.0.21
</mysql.version>
<nekohtml.version>
1.9.22
</nekohtml.version>
<nekohtml.version>
1.9.22
</nekohtml.version>
<neo4j-ogm.version>
3.1.21
</neo4j-ogm.version>
<neo4j-ogm.version>
3.1.21
</neo4j-ogm.version>
<netty.version>
4.1.5
1
.Final
</netty.version>
<netty.version>
4.1.5
2
.Final
</netty.version>
<netty-tcnative.version>
2.0.34.Final
</netty-tcnative.version>
<netty-tcnative.version>
2.0.34.Final
</netty-tcnative.version>
<nio-multipart-parser.version>
1.1.0
</nio-multipart-parser.version>
<nio-multipart-parser.version>
1.1.0
</nio-multipart-parser.version>
<pooled-jms.version>
1.0.6
</pooled-jms.version>
<pooled-jms.version>
1.0.6
</pooled-jms.version>
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/reactive/server/AbstractReactiveWebServerFactoryTests.java
View file @
492e1a4c
...
@@ -259,7 +259,11 @@ public abstract class AbstractReactiveWebServerFactoryTests {
...
@@ -259,7 +259,11 @@ public abstract class AbstractReactiveWebServerFactoryTests {
Mono
<
String
>
result
=
client
.
post
().
uri
(
"/test"
).
contentType
(
MediaType
.
TEXT_PLAIN
)
Mono
<
String
>
result
=
client
.
post
().
uri
(
"/test"
).
contentType
(
MediaType
.
TEXT_PLAIN
)
.
body
(
BodyInserters
.
fromObject
(
"Hello World"
)).
exchange
()
.
body
(
BodyInserters
.
fromObject
(
"Hello World"
)).
exchange
()
.
flatMap
((
response
)
->
response
.
bodyToMono
(
String
.
class
));
.
flatMap
((
response
)
->
response
.
bodyToMono
(
String
.
class
));
StepVerifier
.
create
(
result
).
expectError
(
SSLException
.
class
).
verify
(
Duration
.
ofSeconds
(
10
));
StepVerifier
.
create
(
result
).
expectErrorSatisfies
((
exception
)
->
{
if
(!(
exception
instanceof
SSLException
))
{
assertThat
(
exception
).
hasCauseInstanceOf
(
SSLException
.
class
);
}
}).
verify
(
Duration
.
ofSeconds
(
10
));
}
}
protected
WebClient
.
Builder
getWebClient
()
{
protected
WebClient
.
Builder
getWebClient
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment