From: Phil Carmody Date: Wed, 29 Aug 2018 11:49:54 +0000 (+0300) Subject: lib-http: library default pool allocation increases X-Git-Tag: 2.3.9~1492 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14fe3df51a7048b2901e9d1ebbba748c07079adc;p=thirdparty%2Fdovecot%2Fcore.git lib-http: library default pool allocation increases Many pools will need to grow even when the smallest amount of work is done within them, which can spam the logs. Signed-off-by: Phil Carmody --- diff --git a/src/lib-http/http-request-parser.c b/src/lib-http/http-request-parser.c index 0862b623f4..8cb44bad94 100644 --- a/src/lib-http/http-request-parser.c +++ b/src/lib-http/http-request-parser.c @@ -52,7 +52,7 @@ http_request_parser_init(struct istream *input, uoff_t max_payload_size; enum http_message_parse_flags msg_flags = 0; - pool = pool_alloconly_create("http request parser", 512); + pool = pool_alloconly_create("http request parser", 1024); parser = p_new(pool, struct http_request_parser, 1); parser->pool = pool;