mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Ensure that remove_pusher is always async (#7981)
This commit is contained in:
parent
a53e0160a2
commit
3950ae51ef
1
changelog.d/7981.misc
Normal file
1
changelog.d/7981.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Convert various parts of the codebase to async/await.
|
@ -628,7 +628,7 @@ class GenericWorkerServer(HomeServer):
|
|||||||
|
|
||||||
self.get_tcp_replication().start_replication(self)
|
self.get_tcp_replication().start_replication(self)
|
||||||
|
|
||||||
def remove_pusher(self, app_id, push_key, user_id):
|
async def remove_pusher(self, app_id, push_key, user_id):
|
||||||
self.get_tcp_replication().send_remove_pusher(app_id, push_key, user_id)
|
self.get_tcp_replication().send_remove_pusher(app_id, push_key, user_id)
|
||||||
|
|
||||||
def build_replication_data_handler(self):
|
def build_replication_data_handler(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user