mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 11:13:49 +01:00
Cache device resync requests over replication (#16241)
This commit is contained in:
parent
93f2fdd8d1
commit
e9eb26e3af
2 changed files with 2 additions and 1 deletions
1
changelog.d/16241.misc
Normal file
1
changelog.d/16241.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Cache device resync requests over replication.
|
|
@ -62,7 +62,7 @@ class ReplicationMultiUserDevicesResyncRestServlet(ReplicationEndpoint):
|
||||||
|
|
||||||
NAME = "multi_user_device_resync"
|
NAME = "multi_user_device_resync"
|
||||||
PATH_ARGS = ()
|
PATH_ARGS = ()
|
||||||
CACHE = False
|
CACHE = True
|
||||||
|
|
||||||
def __init__(self, hs: "HomeServer"):
|
def __init__(self, hs: "HomeServer"):
|
||||||
super().__init__(hs)
|
super().__init__(hs)
|
||||||
|
|
Loading…
Reference in a new issue