mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-15 07:41:47 -05:00
Allow moving account data and receipts streams off master (#9104)
This commit is contained in:
parent
f08ef64926
commit
6633a4015a
27 changed files with 854 additions and 279 deletions
|
|
@ -15,6 +15,7 @@
|
|||
|
||||
from synapse.http.server import JsonResource
|
||||
from synapse.replication.http import (
|
||||
account_data,
|
||||
devices,
|
||||
federation,
|
||||
login,
|
||||
|
|
@ -40,6 +41,7 @@ class ReplicationRestResource(JsonResource):
|
|||
presence.register_servlets(hs, self)
|
||||
membership.register_servlets(hs, self)
|
||||
streams.register_servlets(hs, self)
|
||||
account_data.register_servlets(hs, self)
|
||||
|
||||
# The following can't currently be instantiated on workers.
|
||||
if hs.config.worker.worker_app is None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue