()
| 886 | |
| 887 | def 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 |
nothing calls this directly
no test coverage detected