Skip to content

Commit bda61ba

Browse files
GitHub Issue 161: LKS insert forms can't handle long file field names (LabKey Issue: 54219)
1 parent 97d870a commit bda61ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public static void main(String[] args)
9797

9898
// Boost limits imposed by Tomcat v10.1.42
9999
put("server.tomcat.max-part-count", 500);
100-
put("server.tomcat.max-part-header-size", 512);
100+
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);
102102

103103
// Enable HTTP compression for response content

0 commit comments

Comments
 (0)