From fe912d36555999aa9607f55da467605f098470fb Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 17 Mar 2021 21:53:42 +0000 Subject: [PATCH] Increase max message length, for uploading actor --- daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon.py b/daemon.py index 92bf42014..c7edcc342 100644 --- a/daemon.py +++ b/daemon.py @@ -14546,8 +14546,8 @@ def runDaemon(brochMode: bool, # max POST size of 30M httpd.maxPostLength = 1024 * 1024 * 30 httpd.maxMediaSize = httpd.maxPostLength - # Maximum text length is 32K - enough for a blog post - httpd.maxMessageLength = 32000 + # Maximum text length is 64K - enough for a blog post + httpd.maxMessageLength = 64000 # Maximum overall number of posts per box httpd.maxPostsInBox = 32000 httpd.domain = domain