summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-04-25 10:54:09 +0100
committerErik Johnston <erik@matrix.org>2017-04-25 10:54:09 +0100
commitefab1dadde8ce6305bf0960bf70aaeef54b42db6 (patch)
tree677ce9338752fddfae32321743801f7607852ea6
parentReduce cache size by not storing deferreds (diff)
downloadsynapse-efab1dadde8ce6305bf0960bf70aaeef54b42db6.tar.xz
Remove DEBUG_CACHES
-rw-r--r--synapse/util/caches/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/util/caches/__init__.py b/synapse/util/caches/__init__.py
index 9fd35a8134..4a83c46d98 100644
--- a/synapse/util/caches/__init__.py
+++ b/synapse/util/caches/__init__.py
@@ -18,8 +18,6 @@ import os
 
 CACHE_SIZE_FACTOR = float(os.environ.get("SYNAPSE_CACHE_FACTOR", 0.1))
 
-DEBUG_CACHES = False
-
 metrics = synapse.metrics.get_metrics_for("synapse.util.caches")
 
 caches_by_name = {}