From 14fe3df51a7048b2901e9d1ebbba748c07079adc Mon Sep 17 00:00:00 2001 From: Phil Carmody Date: Wed, 29 Aug 2018 14:49:54 +0300 Subject: [PATCH] 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 --- src/lib-http/http-request-parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3