diff options
author | Erik Johnston <erik@matrix.org> | 2015-07-27 13:57:29 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-07-27 13:57:29 +0100 |
commit | 39e21ea51cf94f436f1f845f24c1b04f11b92c6f (patch) | |
tree | b9517d390414bf0512c087c58ff061fd42b33b9c /synapse/storage/state.py | |
parent | Merge pull request #205 from matrix-org/erikj/pick_largest_thumbnail (diff) | |
download | synapse-39e21ea51cf94f436f1f845f24c1b04f11b92c6f.tar.xz |
Add support for using keyword arguments with cached functions
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index 47bec65497..55c6d52890 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from ._base import SQLBaseStore, cached +from ._base import SQLBaseStore, cached, cachedInlineCallbacks from twisted.internet import defer @@ -189,8 +189,7 @@ class StateStore(SQLBaseStore): events = yield self._get_events(event_ids, get_prev_content=False) defer.returnValue(events) - @cached(num_args=3) - @defer.inlineCallbacks + @cachedInlineCallbacks(num_args=3) def get_current_state_for_key(self, room_id, event_type, state_key): def f(txn): sql = ( |