0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-05-23 14:03:45 +02:00

Cache device resync requests over replication (#16241)

This commit is contained in:
David Robertson 2023-09-04 11:57:59 +01:00 committed by GitHub
parent 93f2fdd8d1
commit e9eb26e3af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

1
changelog.d/16241.misc Normal file
View file

@ -0,0 +1 @@
Cache device resync requests over replication.

View file

@ -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)