summary refs log tree commit diff
path: root/changelog.d/8817.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 1.24.0rc1Patrick Cloke2020-12-021-1/+0
|
* Defer SIGHUP handlers to reactor. (#8817)Erik Johnston2020-11-261-0/+1
We can get a SIGHUP at any point, including times where we are not in a sane state. By deferring calling the handlers until the next reactor tick we ensure that we don't get unexpected conflicts, e.g. trying to flush logs from the signal handler while the code was in the process of writing a log entry. Fixes #8769.