mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-26 03:25:53 +03:00
Fix PeriodicallyFlushingMemoryHandler inhibiting application shutdown (#10517)
This commit is contained in:
parent
6878e10653
commit
903db99ed5
2 changed files with 2 additions and 0 deletions
1
changelog.d/10517.bugfix
Normal file
1
changelog.d/10517.bugfix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix the `PeriodicallyFlushingMemoryHandler` inhibiting application shutdown because of its background thread.
|
|
@ -45,6 +45,7 @@ class PeriodicallyFlushingMemoryHandler(MemoryHandler):
|
||||||
self._flushing_thread: Thread = Thread(
|
self._flushing_thread: Thread = Thread(
|
||||||
name="PeriodicallyFlushingMemoryHandler flushing thread",
|
name="PeriodicallyFlushingMemoryHandler flushing thread",
|
||||||
target=self._flush_periodically,
|
target=self._flush_periodically,
|
||||||
|
daemon=True,
|
||||||
)
|
)
|
||||||
self._flushing_thread.start()
|
self._flushing_thread.start()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue