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.
2 parents 3a183c7 + 7188e18 commit 36dfda0Copy full SHA for 36dfda0
libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerConfigurer.groovy
@@ -105,6 +105,7 @@ class TomcatServerConfigurer {
105
assert httpConn.setProperty('keepAliveTimeout', params.httpIdleTimeout.toString())
106
107
httpConn.maxPostSize = -1 // unlimited post size
108
+ httpConn.maxPartCount = -1
109
110
if(newHttpConnector) {
111
service.addConnector(httpConn)
@@ -185,6 +186,7 @@ class TomcatServerConfigurer {
185
186
assert httpsConn.setProperty('keepAliveTimeout', params.httpsIdleTimeout.toString())
187
188
httpsConn.maxPostSize = -1 // unlimited
189
+ httpsConn.maxPartCount = -1
190
191
if(newHttpsConnector) {
192
service.addConnector(httpsConn)
0 commit comments