1
0

Ensure that remove_pusher is always async (#7981)

This commit is contained in:
Patrick Cloke
2020-07-30 06:56:55 -04:00
committed by GitHub
parent a53e0160a2
commit 3950ae51ef
2 changed files with 2 additions and 1 deletions

1
changelog.d/7981.misc Normal file
View File

@@ -0,0 +1 @@
Convert various parts of the codebase to async/await.

View File

@@ -628,7 +628,7 @@ class GenericWorkerServer(HomeServer):
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)
def build_replication_data_handler(self):