mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 03:54:52 -04:00
Push: Don't acquire lock unless necessary
This commit is contained in:
parent
91818723a1
commit
f60218ec41
1 changed files with 4 additions and 0 deletions
|
@ -213,6 +213,10 @@ class RulesForRoom(object):
|
|||
"""
|
||||
state_group = context.state_group
|
||||
|
||||
if state_group and self.state_group == state_group:
|
||||
logger.debug("Using cached rules for %r", self.room_id)
|
||||
defer.returnValue(self.rules_by_user)
|
||||
|
||||
with (yield self.linearizer.queue(())):
|
||||
if state_group and self.state_group == state_group:
|
||||
logger.debug("Using cached rules for %r", self.room_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue