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
fa03f75d
Commit
fa03f75d
authored
Sep 16, 2020
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upgrade to Undertow 2.2.0.Final
Closes gh-23367
parent
777a4e98
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
build.gradle
spring-boot-project/spring-boot-dependencies/build.gradle
+1
-1
CompressionHttpHandlerFactory.java
.../web/embedded/undertow/CompressionHttpHandlerFactory.java
+1
-1
No files found.
spring-boot-project/spring-boot-dependencies/build.gradle
View file @
fa03f75d
...
@@ -1722,7 +1722,7 @@ bom {
...
@@ -1722,7 +1722,7 @@ bom {
]
]
}
}
}
}
library
(
"Undertow"
,
"2.
1.3
.Final"
)
{
library
(
"Undertow"
,
"2.
2.0
.Final"
)
{
group
(
"io.undertow"
)
{
group
(
"io.undertow"
)
{
modules
=
[
modules
=
[
"undertow-core"
,
"undertow-core"
,
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/CompressionHttpHandlerFactory.java
View file @
fa03f75d
...
@@ -118,7 +118,7 @@ class CompressionHttpHandlerFactory implements HttpHandlerFactory {
...
@@ -118,7 +118,7 @@ class CompressionHttpHandlerFactory implements HttpHandlerFactory {
private
final
Predicate
maxContentSize
;
private
final
Predicate
maxContentSize
;
MaxSizePredicate
(
int
size
)
{
MaxSizePredicate
(
int
size
)
{
this
.
maxContentSize
=
Predicates
.
maxContentSize
(
size
);
this
.
maxContentSize
=
Predicates
.
requestLargerThan
(
size
);
}
}
@Override
@Override
...
...
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