diff options
author | reivilibre <38398653+reivilibre@users.noreply.github.com> | 2021-08-03 14:28:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-03 14:28:30 +0100 |
commit | 903db99ed552d06f0a9e0379e55e655c5761355b (patch) | |
tree | 512878ae178551de646e72b36ae9f48ef3059e8e /synapse | |
parent | Fix release script URL (#10516) (diff) | |
download | synapse-903db99ed552d06f0a9e0379e55e655c5761355b.tar.xz |
Fix PeriodicallyFlushingMemoryHandler inhibiting application shutdown (#10517)
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/logging/handlers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/logging/handlers.py b/synapse/logging/handlers.py index a6c212f300..af5fc407a8 100644 --- a/synapse/logging/handlers.py +++ b/synapse/logging/handlers.py @@ -45,6 +45,7 @@ class PeriodicallyFlushingMemoryHandler(MemoryHandler): self._flushing_thread: Thread = Thread( name="PeriodicallyFlushingMemoryHandler flushing thread", target=self._flush_periodically, + daemon=True, ) self._flushing_thread.start() |