diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-09-07 15:58:00 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-09-07 15:58:00 +0100 |
commit | 2a0159b8aeaf8dce808345e2266c6d3301fa055a (patch) | |
tree | 7b0ce5866eb2199956e000355c7e34587f0d9053 /synapse/storage | |
parent | Move the check for federated device_messages. (diff) | |
download | synapse-2a0159b8aeaf8dce808345e2266c6d3301fa055a.tar.xz |
Fix the stream change cache to work over replication
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 6965daddc5..828e5ca60b 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -202,7 +202,7 @@ class DataStore(RoomMemberStore, RoomStore, max_value=max_device_inbox_id, ) self._device_federation_outbox_stream_cache = StreamChangeCache( - "DeviceInboxStreamChangeCache", min_device_outbox_id, + "DeviceFederationOutboxStreamChangeCache", min_device_outbox_id, prefilled_cache=device_outbox_prefill, ) |