summary refs log tree commit diff
path: root/synapse/state.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-01-10 16:16:17 +0000
committerErik Johnston <erik@matrix.org>2017-01-10 16:16:17 +0000
commitfe28150cdc82b963a18d92d88c8ed748dd3b5364 (patch)
tree9b83d9b9c0664ed8e05b827305f3394e6316b49c /synapse/state.py
parentLog which files we saved attachments to in the media_repository (diff)
parentMerge pull request #1792 from matrix-org/erikj/limit_cache_prefill_device (diff)
downloadsynapse-fe28150cdc82b963a18d92d88c8ed748dd3b5364.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/state.py')
-rw-r--r--synapse/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state.py b/synapse/state.py

index 8003099c88..b9d5627a82 100644 --- a/synapse/state.py +++ b/synapse/state.py
@@ -89,7 +89,7 @@ class StateHandler(object): # dict of set of event_ids -> _StateCacheEntry. self._state_cache = None - self.resolve_linearizer = Linearizer() + self.resolve_linearizer = Linearizer(name="state_resolve_lock") def start_caching(self): logger.debug("start_caching")