Compare commits

...

1 commit

Author SHA1 Message Date
Richard van der Hoff 1894419915 disable background updates 2021-11-04 16:08:48 +00:00

View file

@ -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: