diff options
author | Richard van der Hoff <richard@matrix.org> | 2021-11-04 16:08:48 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2021-11-04 16:08:48 +0000 |
commit | 1894419915c2869bc69262a69f0713ba40eee5d5 (patch) | |
tree | f7132a3313d0cecc4cfbc284f59de9fcf4f35016 | |
parent | Update changelog (diff) | |
download | synapse-1894419915c2869bc69262a69f0713ba40eee5d5.tar.xz |
disable background updates v1.46-modular1
-rw-r--r-- | synapse/storage/background_updates.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/background_updates.py b/synapse/storage/background_updates.py index 82b31d24f1..2e1bd2f745 100644 --- a/synapse/storage/background_updates.py +++ b/synapse/storage/background_updates.py @@ -101,6 +101,7 @@ class BackgroundUpdater: self._all_done = False def start_doing_background_updates(self) -> None: + return run_as_background_process("background_updates", self.run_background_updates) async def run_background_updates(self, sleep: bool = True) -> None: |