summary refs log tree commit diff
path: root/synapse/replication/http
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2019-02-15 18:15:16 +0000
committerhera <matrix@hera.matrix.org>2019-02-15 18:15:21 +0000
commitc10c71e70d4ac3b87a7ace9d12e8df5fdb5b9b94 (patch)
treeb30c7778ef9f162a3f653304ea55dea4a3c22666 /synapse/replication/http
parentMerge pull request #4655 from matrix-org/hawkowl/registration-worker (diff)
downloadsynapse-c10c71e70d4ac3b87a7ace9d12e8df5fdb5b9b94.tar.xz
Emergency changes
Diffstat (limited to 'synapse/replication/http')
-rw-r--r--synapse/replication/http/device.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/device.py b/synapse/replication/http/device.py

index 4855ba098f..605de028a0 100644 --- a/synapse/replication/http/device.py +++ b/synapse/replication/http/device.py
@@ -55,7 +55,7 @@ class CheckDeviceRegisteredServlet(ReplicationEndpoint): try: device_id = yield self.device_handler.check_device_registered(user_id, device_id) except Exception as e: - defer.returnValue((400, str(e)) + defer.returnValue((400, str(e))) defer.returnValue((200, {"device_id": device_id}))