We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98cde9 commit 57e91e1Copy full SHA for 57e91e1
1 file changed
server/embedded/src/org/labkey/embedded/LabKeyServer.java
@@ -99,6 +99,8 @@ public static void main(String[] args)
99
put("server.tomcat.max-part-count", 500);
100
put("server.tomcat.max-part-header-size", 1024); // GitHub Issue 161: LKS insert forms can't handle long file field names
101
put("server.tomcat.max-connections", 250);
102
+ // Boost limit back to Tomcat 10 level
103
+ put("server.tomcat.max-parameter-count", 10_000);
104
105
// Enable HTTP compression for response content
106
put("server.compression.enabled", "true");
0 commit comments