Upgrade to Undertow 2.2.0.Final

Closes gh-23367
pull/23403/head
Stephane Nicoll 4 years ago
parent 777a4e988b
commit fa03f75d21

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

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

Loading…
Cancel
Save