diff options
author | Erik Johnston <erikj@element.io> | 2024-07-08 20:30:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 20:30:23 +0100 |
commit | 8cdd2d214e9bbf8995ff4920140804ebcea6497e (patch) | |
tree | e4eb4b9dfc4419f74704bbc3023c38fe426dd2b3 /tests/handlers | |
parent | Add `rooms.bump_stamp` to Sliding Sync `/sync` for easier client-side sorting... (diff) | |
download | synapse-8cdd2d214e9bbf8995ff4920140804ebcea6497e.tar.xz |
Fix bug in sliding sync when using old DB. (#17398)
We don't necessarily have `instance_name` for old events (before we support multiple event persisters). We treat those as if the `instance_name` was "master". --------- Co-authored-by: Eric Eastwood <eric.eastwood@beta.gouv.fr>
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_sync.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/handlers/test_sync.py b/tests/handlers/test_sync.py index 674dd4fb54..77aafa492e 100644 --- a/tests/handlers/test_sync.py +++ b/tests/handlers/test_sync.py @@ -210,7 +210,6 @@ class SyncTestCase(tests.unittest.HomeserverTestCase): ) # Blow away caches (supported room versions can only change due to a restart). - self.store.get_rooms_for_user_with_stream_ordering.invalidate_all() self.store.get_rooms_for_user.invalidate_all() self.store._get_event_cache.clear() self.store._event_ref.clear() |