fix(pterodactyl): adding some debugging code
Some checks failed
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 21s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 26s

This commit is contained in:
SeaswimmerTheFsh 2024-03-01 13:08:10 -05:00
parent b18b99075e
commit 6f4f13e623
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
2 changed files with 3 additions and 1 deletions

View file

@ -21,6 +21,8 @@ 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")