Sliding Sync: Shortcut for checking if certain background updates have completed (#17724)

Shortcut for checking if certain background updates have completed

Pulling this change out from one of @erikjohnston's branches
(https://github.com/element-hq/synapse/compare/develop...erikj/ss_perf)

---------

Co-authored-by: Erik Johnston <erikj@element.io>
This commit is contained in:
Eric Eastwood 2024-09-18 13:12:14 -05:00 committed by GitHub
parent 3c8a116e1a
commit 61b7c31772
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

1
changelog.d/17724.misc Normal file
View File

@ -0,0 +1 @@
Shortcut for checking if certain background updates have completed (utilized in Sliding Sync).

View File

@ -490,6 +490,12 @@ class BackgroundUpdater:
if self._all_done:
return True
# We now check if we have completed all pending background updates. We
# do this as once this returns True then it will set `self._all_done`
# and we can skip checking the database in future.
if await self.has_completed_background_updates():
return True
rows = await self.db_pool.simple_select_many_batch(
table="background_updates",
column="update_name",