Disable WebSocket heartbeat on server and increase client timeout to 30s to resolve connection drops

This commit is contained in:
Adolfo Reyna
2026-06-19 20:03:54 -04:00
parent dc9b47714e
commit 6ee92b6ede
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ def main():
"X-Device-ID": DEVICE_ID
}
ws = WebSocketClient(HERMES_WS_URL, headers=headers)
ws = WebSocketClient(HERMES_WS_URL, headers=headers, timeout=30)
try:
ws.connect()