summary refs log tree commit diff
path: root/synapse/replication/http/_base.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-19 15:13:08 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-19 15:13:08 +0000
commitbc34ac53ec077ffb65d3db7009bf9a032846a93e (patch)
treefe29a254a3b9b961a30b6328117ef44817729b2a /synapse/replication/http/_base.py
parentAdd a prometheus metric for active cache lookups. (#5750) (diff)
parentFix servlet metric names (#5734) (diff)
downloadsynapse-bc34ac53ec077ffb65d3db7009bf9a032846a93e.tar.xz
Fix servlet metric names (#5734)
Diffstat (limited to 'synapse/replication/http/_base.py')
-rw-r--r--synapse/replication/http/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py

index f5074b101a..2e0594e581 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py
@@ -205,7 +205,7 @@ class ReplicationEndpoint(object): args = "/".join("(?P<%s>[^/]+)" % (arg,) for arg in url_args) pattern = re.compile("^/_synapse/replication/%s/%s$" % (self.NAME, args)) - http_server.register_paths(method, [pattern], handler) + http_server.register_paths(method, [pattern], handler, self.__class__.__name__) def _cached_handler(self, request, txn_id, **kwargs): """Called on new incoming requests when caching is enabled. Checks