Add comment

This commit is contained in:
Erik Johnston 2017-05-18 11:45:56 +01:00
parent 66d8ffabbd
commit 056ba9b795

View File

@ -74,6 +74,9 @@ class BulkPushRuleEvaluator:
Returns:
RulesForRoom
"""
# It's important that RulesForRoom gets added to self._get_rules_for_room.cache
# before any lookup methods get called on it as otherwise there may be
# a race if invalidate_all gets called (which assumes its in the cache)
return RulesForRoom(self.hs, room_id, self._get_rules_for_room.cache)
@defer.inlineCallbacks