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",
|
||||
|
||||
@@ -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