Commit fa03f75d authored by Stephane Nicoll's avatar Stephane Nicoll

Upgrade to Undertow 2.2.0.Final

Closes gh-23367
parent 777a4e98
...@@ -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",
......
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment