diff options
author | Erik Johnston <erik@matrix.org> | 2019-09-25 11:32:41 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-09-25 11:32:41 +0100 |
commit | fde4ce22135b06d05b646141f90cdf3038ed4fe2 (patch) | |
tree | edd0a083d3642e07f0bd0599ffd52026568faaf0 | |
parent | Merge pull request #6092 from matrix-org/babolivier/background_update_deactiv... (diff) | |
download | synapse-fde4ce22135b06d05b646141f90cdf3038ed4fe2.tar.xz |
Don't create new span for get_user_by_req
We don't actually care about what happens in `get_user_by_req` and having it as a separate span means that the entity tag isn't added to the servlet spans, making it harder to search.
-rw-r--r-- | synapse/api/auth.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 9e445cd808..59852bdbdb 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -179,7 +179,6 @@ class Auth(object): def get_public_keys(self, invite_event): return event_auth.get_public_keys(invite_event) - @opentracing.trace @defer.inlineCallbacks def get_user_by_req( self, request, allow_guest=False, rights="access", allow_expired=False |