diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-08 10:29:58 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-08 10:29:58 +0100 |
commit | 501141763245647f41636621867ad1bacc47e6b5 (patch) | |
tree | 01663698af0a7af0bda058e9ac5786c5a044ebdc /synapse/replication/http/_base.py | |
parent | Fix isort (diff) | |
download | synapse-501141763245647f41636621867ad1bacc47e6b5.tar.xz |
Fixup logging and docstrings
Diffstat (limited to 'synapse/replication/http/_base.py')
-rw-r--r-- | synapse/replication/http/_base.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py index 4de3825fda..619ddab540 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py @@ -151,7 +151,7 @@ class ReplicationEndpoint(object): if e.code != 504 or not cls.RETRY_ON_TIMEOUT: raise - logger.warn("send_federation_events_to_master request timed out") + logger.warn("%s request timed out", cls.NAME) # If we timed out we probably don't need to worry about backing # off too much, but lets just wait a little anyway. @@ -190,7 +190,9 @@ class ReplicationEndpoint(object): http_server.register_paths(method, [pattern], handler) def _cached_handler(self, request, txn_id, **kwargs): - """Wraps `_handle_request` the responses should be cached. + """Called on new incoming requests when caching is enabled. Checks + if their is a cached response for the request and returns that, + otherwise calls `_handle_request` and caches its response. """ # We just use the txn_id here, but we probably also want to use the # other PATH_ARGS as well. |