Skip to content

Commit 57e91e1

Browse files
Restore limit of 10,000 HTTP parameters to fix flow tests (#1263)
1 parent c98cde9 commit 57e91e1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

server/embedded/src/org/labkey/embedded/LabKeyServer.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ public static void main(String[] args)
9999
put("server.tomcat.max-part-count", 500);
100100
put("server.tomcat.max-part-header-size", 1024); // GitHub Issue 161: LKS insert forms can't handle long file field names
101101
put("server.tomcat.max-connections", 250);
102+
// Boost limit back to Tomcat 10 level
103+
put("server.tomcat.max-parameter-count", 10_000);
102104

103105
// Enable HTTP compression for response content
104106
put("server.compression.enabled", "true");

0 commit comments

Comments
 (0)