Skip to content

Commit

Permalink
lib-http: library default pool allocation increases
Browse files Browse the repository at this point in the history
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 <phil@dovecot.fi>
  • Loading branch information
Phil Carmody committed Aug 30, 2018
1 parent c00c638 commit 14fe3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-http/http-request-parser.c
Expand Up @@ -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;

Expand Down

0 comments on commit 14fe3df

Please sign in to comment.