Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Framework/Utilities/live_log_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,11 @@ def run_ws_thread():
next_ws = _build_websocket(ws_url)
with connection_lock:
ws = next_ws
next_ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
next_ws.run_forever(
sslopt={"cert_reqs": ssl.CERT_NONE},
ping_interval=15,
ping_timeout=10
)
except Exception as e:
_log(f"Connection attempt failed: {e}")
finally:
Expand Down
Loading