diff options
author | Will Hunt <will@half-shot.uk> | 2021-05-05 14:27:02 +0100 |
---|---|---|
committer | Will Hunt <will@half-shot.uk> | 2021-05-05 14:27:02 +0100 |
commit | 89ad2f60cacaecc2726cb349860a78381330a8d1 (patch) | |
tree | 1ceb36b6ef9337886a80df090346935d1da2d5f7 /scripts | |
parent | Merge remote-tracking branch 'origin/develop' into hs/hacked-together-event-c... (diff) | |
parent | Time external cache response time (#9904) (diff) | |
download | synapse-89ad2f60cacaecc2726cb349860a78381330a8d1.tar.xz |
Merge remote-tracking branch 'origin/develop' into hs/hacked-together-event-cache
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/synapse_port_db | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/synapse_port_db b/scripts/synapse_port_db index 0ba59a1082..3e418ee8b9 100755 --- a/scripts/synapse_port_db +++ b/scripts/synapse_port_db @@ -641,8 +641,11 @@ class Porter(object): "device_inbox_sequence", ("device_inbox", "device_federation_outbox") ) await self._setup_sequence( - "account_data_sequence", ("room_account_data", "room_tags_revisions", "account_data")) - await self._setup_sequence("receipts_sequence", ("receipts_linearized", )) + "account_data_sequence", + ("room_account_data", "room_tags_revisions", "account_data"), + ) + await self._setup_sequence("receipts_sequence", ("receipts_linearized",)) + await self._setup_sequence("presence_stream_sequence", ("presence_stream",)) await self._setup_auth_chain_sequence() # Step 3. Get tables. |