diff options
author | Jorik Schellekens <joriksch@gmail.com> | 2019-08-16 15:06:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-16 15:06:07 +0100 |
commit | 5f744b7982db4a91c3eb37448c8a0ce50adb2ddc (patch) | |
tree | 77602e8e48aa6ed728d3bee9e6bff832500d84aa | |
parent | Inverse description (diff) | |
download | synapse-5f744b7982db4a91c3eb37448c8a0ce50adb2ddc.tar.xz |
Remove user_id tag
-rw-r--r-- | synapse/api/auth.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 3d094bac2a..872e1f66c3 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -267,8 +267,7 @@ class Auth(object): opentracing.set_tag("authenticated_entity", user.to_string()) # there is at least one other place where authenticated entity is - # set. user_id is tagged incase authenticated_entity is clobbered - opentracing.set_tag("user_id", user.to_string()) + # set. return synapse.types.create_requester( user, token_id, is_guest, device_id, app_service=app_service |