From 8cbad26e1d89c9bf8395a5fbc6a1811b5e20498c Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 1 Mar 2024 13:13:30 -0500 Subject: [PATCH] fix(pterodactyl): removed some debugging stuff --- pterodactyl/pterodactyl.py | 2 +- pterodactyl/websocket.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index 30f5a62..11a449a 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -44,7 +44,7 @@ class Pterodactyl(commands.Cog): except Exception as e: # pylint: disable=broad-exception-caught logger.error("WebSocket task has failed: %s", e, exc_info=e) self.task.cancel() - # self.task = self.get_task() + self.task = self.get_task() @commands.Cog.listener() async def on_message_without_command(self, message: discord.Message) -> None: diff --git a/pterodactyl/websocket.py b/pterodactyl/websocket.py index 15b3118..4bf3695 100644 --- a/pterodactyl/websocket.py +++ b/pterodactyl/websocket.py @@ -21,8 +21,6 @@ async def establish_websocket_connection(coginstance: Pterodactyl) -> None: websocket_credentials = await retrieve_websocket_credentials(coginstance) - logger.info("WebSocket connection details retrieved\n%s\n%s", json.dumps(websocket_credentials), base_url) - async with websockets.connect(websocket_credentials['data']['socket'], origin=base_url, ping_timeout=60) as websocket: logger.info("WebSocket connection established")