MCPcopy Create free account
hub / github.com/StarsTom/mobileCodexHelper / wait_for_remote_reachable

Function wait_for_remote_reachable

mobile_codex_control.py:887–892  ·  view source on GitHub ↗
(timeout: float = 8.0)

Source from the content-addressed store, hash-verified

885
886
887def wait_for_remote_reachable(timeout: float = 8.0) -> bool:
888 def _remote_ok() -> bool:
889 status = collect_status()
890 return bool(status["summary"]["remote_reachable"])
891
892 return wait_for(_remote_ok, timeout=timeout, interval=1.0)
893
894
895def perform_action(action: str) -> str:

Callers 1

perform_actionFunction · 0.85

Calls 1

wait_forFunction · 0.85

Tested by

no test coverage detected