diff options
author | Erik Johnston <erik@matrix.org> | 2016-02-02 15:19:34 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-02-02 15:21:10 +0000 |
commit | 65e92eca4912848b03f71b7b7d29727015be31ce (patch) | |
tree | f60ef124aa6ebf4fd3fcf446fa65abae5f53523d /synapse/storage/room.py | |
parent | Merge pull request #546 from matrix-org/erikj/events (diff) | |
download | synapse-65e92eca4912848b03f71b7b7d29727015be31ce.tar.xz |
Change the way we do public room list fetching
Diffstat (limited to 'synapse/storage/room.py')
-rw-r--r-- | synapse/storage/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/room.py b/synapse/storage/room.py index dc09a3aaba..1b6311f332 100644 --- a/synapse/storage/room.py +++ b/synapse/storage/room.py @@ -18,7 +18,7 @@ from twisted.internet import defer from synapse.api.errors import StoreError from ._base import SQLBaseStore -from synapse.util.caches.descriptors import cachedInlineCallbacks +from synapse.util.caches.descriptors import cachedInlineCallbacks, cached from .engines import PostgresEngine, Sqlite3Engine import collections |