蔡政特
蔡政特
For the new version of `check_if_alive` https://github.com/All-Hands-AI/OpenHands/blob/24773e15c53b0f9b34e3883248f56c2ade9b88a1/openhands/runtime/impl/action_execution/action_execution_client.py#L117-L128 you can add `RequestHTTPError` to `_is_retryable_check_alive_error(exception)`like this: ```python from openhands.runtime.utils.request import RequestHTTPError def _is_retryable_check_alive_error(exception): return isinstance( exception, (httpx.RemoteProtocolError, httpcore.RemoteProtocolError, RequestHTTPError) ) ``` to...
@rbren I've adopted the new version of the code you mentioned, but the error `openhands.runtime.utils.request.RequestHTTPError: 503 Server Error: Service Unavailable` that occur in the local docker environment still can't be...