diff options
author | Erik Johnston <erik@matrix.org> | 2020-05-27 13:34:46 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-05-27 13:34:46 +0100 |
commit | d7d8a2e7ee5058ebc9ce16ca10ecba3e4b1f8928 (patch) | |
tree | 95690348a0a065cd9e4a8336d38abb837df1256b /synapse/config | |
parent | Fix specifying cache factors via env vars with * in name. (#7580) (diff) | |
download | synapse-d7d8a2e7ee5058ebc9ce16ca10ecba3e4b1f8928.tar.xz |
Fix up comments
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/cache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/config/cache.py b/synapse/config/cache.py index acc31652de..0672538796 100644 --- a/synapse/config/cache.py +++ b/synapse/config/cache.py @@ -46,7 +46,7 @@ def _canonicalise_cache_name(cache_name: str) -> str: Since we specify cache names in config and environment variables we need to ignore case and special characters. For example, some caches have asterisks - in their name to donate that they're not attached to a particular database + in their name to denote that they're not attached to a particular database function, and these asterisks need to be stripped out """ @@ -130,7 +130,7 @@ class CacheConfig(Config): # alphanumeric or underscores. These caches can be named with or # without the special characters stripped. For example, to specify # the cache factor for `*stateGroupCache*` via an environment - # variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2`. + # variable would be `SYNAPSE_CACHE_FACTOR_STATEGROUPCACHE=2.0`. # per_cache_factors: #get_users_who_share_room_with_user: 2.0 |