diff options
author | Jorik Schellekens <joriks@matrix.org> | 2019-09-05 16:35:50 +0100 |
---|---|---|
committer | Jorik Schellekens <joriks@matrix.org> | 2019-09-05 16:35:50 +0100 |
commit | d78a0a11e33943c765aded6c6b55c353c47960b8 (patch) | |
tree | 883f5866b841d23cce70add5084b33e1391ce833 | |
parent | Outdated comment (diff) | |
download | synapse-d78a0a11e33943c765aded6c6b55c353c47960b8.tar.xz |
Nicer replication send trace name
-rw-r--r-- | synapse/replication/http/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/_base.py b/synapse/replication/http/_base.py index fed2f5120f..64f012f5b8 100644 --- a/synapse/replication/http/_base.py +++ b/synapse/replication/http/_base.py @@ -133,7 +133,7 @@ class ReplicationEndpoint(object): client = hs.get_simple_http_client() - @trace + @trace(opname="outgoing_replication_request") @defer.inlineCallbacks def send_request(**kwargs): data = yield cls._serialize_payload(**kwargs) |