diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-09-28 13:13:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 13:13:19 +0100 |
commit | 26557c9db443a6fb16fbee8ee19bef03ba2c9b13 (patch) | |
tree | 0c538ce78594f636727ced9db517cc4185622892 | |
parent | build python 3 docker images on circle CI (#3976) (diff) | |
parent | Remove redundant call to start_get_pdu_cache (diff) | |
download | synapse-26557c9db443a6fb16fbee8ee19bef03ba2c9b13.tar.xz |
Merge pull request #3980 from matrix-org/rav/remove_broken_cache_call
Remove redundant call to start_get_pdu_cache
-rw-r--r-- | changelog.d/3980.bugfix | 1 | ||||
-rwxr-xr-x | synapse/app/homeserver.py | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/changelog.d/3980.bugfix b/changelog.d/3980.bugfix new file mode 100644 index 0000000000..7578414ede --- /dev/null +++ b/changelog.d/3980.bugfix @@ -0,0 +1 @@ +Fix some instances of ExpiringCache not expiring cache items diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index a98fdbd210..e3f0d99a3f 100755 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -386,7 +386,6 @@ def setup(config_options): hs.get_pusherpool().start() hs.get_datastore().start_profiling() hs.get_datastore().start_doing_background_updates() - hs.get_federation_client().start_get_pdu_cache() reactor.callWhenRunning(start) |