diff --git a/matrix_alertbot/main.py b/matrix_alertbot/main.py index 4a10155..cc2280a 100644 --- a/matrix_alertbot/main.py +++ b/matrix_alertbot/main.py @@ -52,10 +52,8 @@ def create_matrix_client(config: Config) -> AsyncClient: async def start_matrix_client( - client: AsyncClient, webhook_server: Webhook, cache: Cache, config: Config + client: AsyncClient, cache: Cache, config: Config ) -> bool: - await webhook_server.start() - # Keep trying to reconnect on failure (with some time in-between) while True: try: @@ -136,8 +134,8 @@ def main() -> None: webhook_server = Webhook(client, cache, config) loop = asyncio.get_event_loop() - # loop.create_task(webhook_server.start()) - loop.create_task(start_matrix_client(client, webhook_server, cache, config)) + loop.create_task(webhook_server.start()) + loop.create_task(start_matrix_client(client, cache, config)) try: loop.run_forever()