From cd5c0fbb2a9428fa746b948e5bff26fed17dce03 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Tue, 1 Jul 2025 12:39:26 -0400 Subject: [PATCH] Fix nonexistant kwarg --- libs/python/computer-server/computer_server/watchdog.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/python/computer-server/computer_server/watchdog.py b/libs/python/computer-server/computer_server/watchdog.py index bfa9fc65..a53c3042 100644 --- a/libs/python/computer-server/computer_server/watchdog.py +++ b/libs/python/computer-server/computer_server/watchdog.py @@ -89,14 +89,13 @@ class Watchdog: try: # Create a simple ping message ping_message = { - "type": "ping", - "timestamp": time.time() + "command": "get_screen_size", + "params": {} } # Try to connect to the WebSocket async with websockets.connect( self.ws_uri, - timeout=10, max_size=1024 * 1024 * 10 # 10MB limit to match server ) as websocket: # Send ping message