summary refs log tree commit diff
path: root/synapse/replication
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-12-21 11:42:37 +0000
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2022-12-21 11:42:37 +0000
commit24b802a524aa262689e184ef4d61efa601a06915 (patch)
tree739b7c86a2331b3fbd1334cf1aeb73bffc1ca20f /synapse/replication
parentMerge branch 'rei/hiredis_210_no_sdist' into matrix-org-hotfixes (diff)
parentTypo fix (diff)
downloadsynapse-24b802a524aa262689e184ef4d61efa601a06915.tar.xz
Merge branch 'rei/dresync_exp' into matrix-org-hotfixes
Diffstat (limited to 'synapse/replication')
-rw-r--r--synapse/replication/http/devices.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/replication/http/devices.py b/synapse/replication/http/devices.py

index a41b4289ef..ea5c08e6cf 100644 --- a/synapse/replication/http/devices.py +++ b/synapse/replication/http/devices.py
@@ -135,7 +135,7 @@ class ReplicationMultiUserDevicesResyncRestServlet(ReplicationEndpoint): @staticmethod async def _serialize_payload(user_ids: List[str]) -> JsonDict: # type: ignore[override] - return {"users": user_ids} + return {"user_ids": user_ids} async def _handle_request( # type: ignore[override] self, request: Request