mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-25 19:09:03 +00:00
Upgrade to Undertow 2.2.0.Final
Closes gh-23367
This commit is contained in:
@@ -1722,7 +1722,7 @@ bom {
|
||||
]
|
||||
}
|
||||
}
|
||||
library("Undertow", "2.1.3.Final") {
|
||||
library("Undertow", "2.2.0.Final") {
|
||||
group("io.undertow") {
|
||||
modules = [
|
||||
"undertow-core",
|
||||
|
||||
+1
-1
@@ -118,7 +118,7 @@ class CompressionHttpHandlerFactory implements HttpHandlerFactory {
|
||||
private final Predicate maxContentSize;
|
||||
|
||||
MaxSizePredicate(int size) {
|
||||
this.maxContentSize = Predicates.maxContentSize(size);
|
||||
this.maxContentSize = Predicates.requestLargerThan(size);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user