summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-05-16 17:07:35 +0100
committerErik Johnston <erik@matrix.org>2016-05-16 17:07:35 +0100
commit678c8a7f1e88716c980d8ca8339ce58cb58455e1 (patch)
treecc7b6b3c922c00ebc442b588a149c98883011e30 /synapse
parentMerge pull request #760 from matrix-org/matthew/preview_url_ip_whitelist (diff)
parentMake synctl read a cache factor from config file (diff)
downloadsynapse-678c8a7f1e88716c980d8ca8339ce58cb58455e1.tar.xz
Merge pull request #785 from matrix-org/erikj/cache_factor_synctly
Make synctl read a cache factor from config file
Diffstat (limited to 'synapse')
-rwxr-xr-xsynapse/app/synctl.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/app/synctl.py b/synapse/app/synctl.py
index ab3a31d7b7..669a3ae92a 100755
--- a/synapse/app/synctl.py
+++ b/synapse/app/synctl.py
@@ -66,6 +66,10 @@ def main():
 
     config = yaml.load(open(configfile))
     pidfile = config["pid_file"]
+    cache_factor = config.get("synctl_cache_factor", None)
+
+    if cache_factor:
+        os.environ["SYNAPSE_CACHE_FACTOR"] = cache_factor
 
     action = sys.argv[1] if sys.argv[1:] else "usage"
     if action == "start":