commit | 96d4483df75458614339879e359b72169fa6b760 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Tue Nov 14 22:02:30 2017 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Thu Nov 16 11:19:46 2017 +0100 |
tree | a22369fa192e80992a7413f2988acd8edae66a29 | |
parent | 51606feaf2a303a4d9f20c0f4fc33cbd3834255e [diff] |
BUG/MINOR: Allocate the log buffers before the proxies startup Since the commit cd7879adc ("BUG/MEDIUM: threads: Run the poll loop on the main thread too"), the log buffers are allocated after the proxies startup. So log messages produced during this startup was ignored. To fix the bug, we restore the initialization of these buffers before proxies startup. This is specific to threads, no backport is needed.