Skip to content

Commit

Permalink
Upgrade to Undertow 2.2.0.Final
Browse files Browse the repository at this point in the history
Closes gh-23367
  • Loading branch information
snicoll committed Sep 16, 2020
1 parent 777a4e9 commit fa03f75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Expand Up @@ -1722,7 +1722,7 @@ bom {
]
}
}
library("Undertow", "2.1.3.Final") {
library("Undertow", "2.2.0.Final") {
group("io.undertow") {
modules = [
"undertow-core",
Expand Down
Expand Up @@ -118,7 +118,7 @@ private static class MaxSizePredicate implements Predicate {
private final Predicate maxContentSize;

MaxSizePredicate(int size) {
this.maxContentSize = Predicates.maxContentSize(size);
this.maxContentSize = Predicates.requestLargerThan(size);
}

@Override
Expand Down

0 comments on commit fa03f75

Please sign in to comment.