Skip to content
Snippets Groups Projects
Unverified Commit 3950ae51 authored by Patrick Cloke's avatar Patrick Cloke Committed by GitHub
Browse files

Ensure that remove_pusher is always async (#7981)

parent a53e0160
No related branches found
No related tags found
No related merge requests found
Convert various parts of the codebase to async/await.
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment