Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Cache device resync requests over replication #16241

Merged
merged 2 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/16241.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Cache device resync requests over replication.
2 changes: 1 addition & 1 deletion synapse/replication/http/devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class ReplicationMultiUserDevicesResyncRestServlet(ReplicationEndpoint):

NAME = "multi_user_device_resync"
PATH_ARGS = ()
CACHE = False
CACHE = True

def __init__(self, hs: "HomeServer"):
super().__init__(hs)
Expand Down