diff options
author | Erik Johnston <erik@matrix.org> | 2017-05-18 16:17:23 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-05-18 16:17:23 +0100 |
commit | c57789d138ea3c7f764b2504af8fdcc440656e73 (patch) | |
tree | eaa0224b64c30a95190a9553fd7500309a2c87db /synapse/push | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-c57789d138ea3c7f764b2504af8fdcc440656e73.tar.xz |
Remove size of push get_rules cache
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/bulk_push_rule_evaluator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/push/bulk_push_rule_evaluator.py b/synapse/push/bulk_push_rule_evaluator.py index 5b1f9a1c2d..7f04d5668f 100644 --- a/synapse/push/bulk_push_rule_evaluator.py +++ b/synapse/push/bulk_push_rule_evaluator.py @@ -67,7 +67,7 @@ class BulkPushRuleEvaluator: defer.returnValue(rules_by_user) - @cached(max_entries=10000) + @cached() def _get_rules_for_room(self, room_id): """Get the current RulesForRoom object for the given room id |