summary refs log tree commit diff
path: root/synapse/python_dependencies.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-05-05 10:14:07 +0100
committerErik Johnston <erik@matrix.org>2021-05-05 10:14:07 +0100
commita94edad23b6caa4769ef00fc42ca62da7fb39c08 (patch)
treefb0e049daf04215c67179ddbbdf230032b478615 /synapse/python_dependencies.py
parentfix logging contexts (diff)
parentMerge remote-tracking branch 'origin/develop' into erikj/cache_mem_size (diff)
downloadsynapse-a94edad23b6caa4769ef00fc42ca62da7fb39c08.tar.xz
Merge branch 'erikj/cache_mem_size' into erikj/test_send
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r--synapse/python_dependencies.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py

index 2de946f464..d58eeeaa74 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py
@@ -116,6 +116,8 @@ CONDITIONAL_REQUIREMENTS = { # hiredis is not a *strict* dependency, but it makes things much faster. # (if it is not installed, we fall back to slow code.) "redis": ["txredisapi>=1.4.7", "hiredis"], + # Required to use experimental `caches.track_memory_usage` config option. + "cache_memory": ["pympler"], } ALL_OPTIONAL_REQUIREMENTS = set() # type: Set[str]