mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Fix PeriodicallyFlushingMemoryHandler inhibiting application shutdown (#10517)
This commit is contained in:
parent
6878e10653
commit
903db99ed5
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(
|
||||
name="PeriodicallyFlushingMemoryHandler flushing thread",
|
||||
target=self._flush_periodically,
|
||||
daemon=True,
|
||||
)
|
||||
self._flushing_thread.start()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user