()
| 177 | |
| 178 | |
| 179 | def _get_controller_target() -> tuple[str, int]: |
| 180 | host = os.getenv("DISAGG_CONTROLLER_HOST", "127.0.0.1") |
| 181 | port = int(os.getenv("DISAGG_CONTROLLER_REQUEST_PORT", str(REQUEST_POLLING_PORT - 2))) |
| 182 | return host, port |
| 183 | |
| 184 | |
| 185 | def _send_to_controller(payload: dict[str, Any]) -> None: |
no outgoing calls
no test coverage detected