mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-20 08:04:10 -04:00
Update all the workers and master to use TCP replication
This commit is contained in:
parent
3a1f3f8388
commit
36c28bc467
9 changed files with 255 additions and 397 deletions
|
@ -132,6 +132,7 @@ class HomeServer(object):
|
|||
'federation_sender',
|
||||
'receipts_handler',
|
||||
'macaroon_generator',
|
||||
'tcp_replication',
|
||||
]
|
||||
|
||||
def __init__(self, hostname, **kwargs):
|
||||
|
@ -290,6 +291,9 @@ class HomeServer(object):
|
|||
def build_receipts_handler(self):
|
||||
return ReceiptsHandler(self)
|
||||
|
||||
def build_tcp_replication(self):
|
||||
raise NotImplementedError()
|
||||
|
||||
def remove_pusher(self, app_id, push_key, user_id):
|
||||
return self.get_pusherpool().remove_pusher(app_id, push_key, user_id)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue