diff options
author | Erik Johnston <erik@matrix.org> | 2020-01-15 14:59:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-15 14:59:33 +0000 |
commit | 28c98e51ffa166bd717646b0b34228e59f253485 (patch) | |
tree | 09ba8c8f27412fb3166b6d5d5cb985870424f856 /tests/replication | |
parent | Process EDUs in parallel with PDUs. (#6697) (diff) | |
download | synapse-28c98e51ffa166bd717646b0b34228e59f253485.tar.xz |
Add `local_current_membership` table (#6655)
Currently we rely on `current_state_events` to figure out what rooms a user was in and their last membership event in there. However, if the server leaves the room then the table may be cleaned up and that information is lost. So lets add a table that separately holds that information.
Diffstat (limited to 'tests/replication')
-rw-r--r-- | tests/replication/slave/storage/test_events.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/replication/slave/storage/test_events.py b/tests/replication/slave/storage/test_events.py index b68e9fe082..b1b037006d 100644 --- a/tests/replication/slave/storage/test_events.py +++ b/tests/replication/slave/storage/test_events.py @@ -115,13 +115,13 @@ class SlavedEventStoreTestCase(BaseSlavedStoreTestCase): def test_invites(self): self.persist(type="m.room.create", key="", creator=USER_ID) - self.check("get_invited_rooms_for_user", [USER_ID_2], []) + self.check("get_invited_rooms_for_local_user", [USER_ID_2], []) event = self.persist(type="m.room.member", key=USER_ID_2, membership="invite") self.replicate() self.check( - "get_invited_rooms_for_user", + "get_invited_rooms_for_local_user", [USER_ID_2], [ RoomsForUser( |