We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 975a996 commit 8a6d2f8Copy full SHA for 8a6d2f8
stubbornjava-common/src/main/java/com/stubbornjava/common/undertow/handlers/CustomHandlers.java
@@ -51,7 +51,9 @@ public static HttpHandler gzip(HttpHandler next) {
51
// This 1000 is a priority, not exactly sure what it does.
52
new GzipEncodingProvider(), 1000,
53
// Anything under a content-length of 20 will not be gzipped
54
- Predicates.parse("max-content-size(20)")))
+ Predicates.truePredicate()
55
+ //Predicates.parse("max-content-size(20)") // https://issues.jboss.org/browse/UNDERTOW-1234
56
+ ))
57
.setNext(next);
58
}
59
0 commit comments