diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-07 13:41:05 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-07 13:41:05 +0100 |
commit | b3768ec10ad7a96f0d7f9d774c44fe8ade1f80e0 (patch) | |
tree | 81dfa7ca5326fac96860229f3acbb722c150c51d | |
parent | Change Cache to not use *args in its interface (diff) | |
download | synapse-b3768ec10ad7a96f0d7f9d774c44fe8ade1f80e0.tar.xz |
Remove unncessary cache
-rw-r--r-- | synapse/storage/state.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index e924258d11..5588c9e697 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -192,7 +192,6 @@ class StateStore(SQLBaseStore): events = yield self._get_events(event_ids, get_prev_content=False) defer.returnValue(events) - @cached(num_args=2, lru=True, max_entries=10000) def _get_state_groups_from_group(self, group, types): def f(txn): if types is not None: |