summary refs log tree commit diff
path: root/synapse/replication/http
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2021-03-10 18:15:03 +0000
committerGitHub <noreply@github.com>2021-03-10 18:15:03 +0000
commit1107214a1d93280076ad547603b4a1396d709ad0 (patch)
treed80df2e02391816b0e169ed4f1656ed472a09619 /synapse/replication/http
parentFix spam checker modules documentation example (#9580) (diff)
downloadsynapse-1107214a1d93280076ad547603b4a1396d709ad0.tar.xz
Fix the auth provider on the logins metric (#9573)
We either need to pass the auth provider over the replication api, or make sure
we report the auth provider on the worker that received the request. I've gone
with the latter.
Diffstat (limited to 'synapse/replication/http')
-rw-r--r--synapse/replication/http/login.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/replication/http/login.py b/synapse/replication/http/login.py
index 36071feb36..4ec1bfa6ea 100644
--- a/synapse/replication/http/login.py
+++ b/synapse/replication/http/login.py
@@ -61,7 +61,7 @@ class RegisterDeviceReplicationServlet(ReplicationEndpoint):
         is_guest = content["is_guest"]
         is_appservice_ghost = content["is_appservice_ghost"]
 
-        device_id, access_token = await self.registration_handler.register_device(
+        res = await self.registration_handler.register_device_inner(
             user_id,
             device_id,
             initial_display_name,
@@ -69,7 +69,7 @@ class RegisterDeviceReplicationServlet(ReplicationEndpoint):
             is_appservice_ghost=is_appservice_ghost,
         )
 
-        return 200, {"device_id": device_id, "access_token": access_token}
+        return 200, res
 
 
 def register_servlets(hs, http_server):