diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-09-25 12:02:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 12:02:57 +0100 |
commit | 4c3e7eeec50d82982177a6eaf3114eed08346d9d (patch) | |
tree | cf4b9343618382b19b6650c9ab2969a7220a5017 /synapse/util/caches/expiringcache.py | |
parent | added "media-src: 'self'" to CSP for resources (#3578) (diff) | |
parent | Newsfile (diff) | |
download | synapse-4c3e7eeec50d82982177a6eaf3114eed08346d9d.tar.xz |
Merge pull request #3932 from matrix-org/erikj/auto_start_expiring_caches
Fix some instances of ExpiringCache not expiring cache items
Diffstat (limited to 'synapse/util/caches/expiringcache.py')
-rw-r--r-- | synapse/util/caches/expiringcache.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/util/caches/expiringcache.py b/synapse/util/caches/expiringcache.py index ce85b2ae11..921a9c5b29 100644 --- a/synapse/util/caches/expiringcache.py +++ b/synapse/util/caches/expiringcache.py @@ -58,7 +58,6 @@ class ExpiringCache(object): self.metrics = register_cache("expiring", cache_name, self) - def start(self): if not self._expiry_ms: # Don't bother starting the loop if things never expire return |