diff options
author | Erik Johnston <erik@matrix.org> | 2016-07-21 10:30:12 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-07-21 10:30:12 +0100 |
commit | 248e6770ca0faadf574cfd62f72d8e200cb5b57a (patch) | |
tree | 7bc7a6c0173fe0366c8c029d444da5d3f7609682 /synapse/handlers/sync.py | |
parent | Merge pull request #938 from matrix-org/rav/add_device_id_to_client_ips (diff) | |
download | synapse-248e6770ca0faadf574cfd62f72d8e200cb5b57a.tar.xz |
Cache federation state responses
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index be26a491ff..0ee4ebe504 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -138,7 +138,7 @@ class SyncHandler(object): self.presence_handler = hs.get_presence_handler() self.event_sources = hs.get_event_sources() self.clock = hs.get_clock() - self.response_cache = ResponseCache() + self.response_cache = ResponseCache(hs) def wait_for_sync_for_user(self, sync_config, since_token=None, timeout=0, full_state=False): |