Upgrade to Undertow 2.2.0.Final

Closes gh-23367
This commit is contained in:
Stephane Nicoll 2020-09-16 14:40:12 +02:00
parent 777a4e988b
commit fa03f75d21
2 changed files with 2 additions and 2 deletions

View File

@ -1722,7 +1722,7 @@ bom {
]
}
}
library("Undertow", "2.1.3.Final") {
library("Undertow", "2.2.0.Final") {
group("io.undertow") {
modules = [
"undertow-core",

View File

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