diff options
author | Nick Mills-Barrett <nick@beeper.com> | 2022-09-13 08:16:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 08:16:37 +0100 |
commit | cdbb6412327b542e0dead792717fe58253291131 (patch) | |
tree | f683529f5175445e87b7a04b677bd6ff1a224dac /synapse/_scripts | |
parent | Fix GHA skippable syntax (#13778) (diff) | |
download | synapse-cdbb6412327b542e0dead792717fe58253291131.tar.xz |
Add receipts event stream ordering (#13703)
Diffstat (limited to 'synapse/_scripts')
-rwxr-xr-x | synapse/_scripts/synapse_port_db.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/_scripts/synapse_port_db.py b/synapse/_scripts/synapse_port_db.py index 543bba27c2..30983c47fb 100755 --- a/synapse/_scripts/synapse_port_db.py +++ b/synapse/_scripts/synapse_port_db.py @@ -67,6 +67,7 @@ from synapse.storage.databases.main.media_repository import ( ) from synapse.storage.databases.main.presence import PresenceBackgroundUpdateStore from synapse.storage.databases.main.pusher import PusherWorkerStore +from synapse.storage.databases.main.receipts import ReceiptsBackgroundUpdateStore from synapse.storage.databases.main.registration import ( RegistrationBackgroundUpdateStore, find_max_generated_user_id_localpart, @@ -203,6 +204,7 @@ class Store( PushRuleStore, PusherWorkerStore, PresenceBackgroundUpdateStore, + ReceiptsBackgroundUpdateStore, ): def execute(self, f: Callable[..., R], *args: Any, **kwargs: Any) -> Awaitable[R]: return self.db_pool.runInteraction(f.__name__, f, *args, **kwargs) |