Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Runtime local docker environment HTTPStatusError #7648

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Randonee1
Copy link

  • This change is worth documenting at https://docs.all-hands.dev/
  • Include this change in the Release Notes. If checked, you must provide an end-user friendly description for your change below

End-user friendly description of the problem this fixes or functionality that this introduces.

This pull request addresses an issue where openhands.runtime.utils.request.RequestHTTPError: 503 Server Error: Service Unavailable occurring in the local docker environment is not being caught by the retry_if_exception. This fix ensures that such errors are properly handled and retried, improving the reliability of the system in local development environments.


Give a summary of what the PR does, explaining any non-trivial design decisions.

Adding httpx.HTTPStatusError to _is_retryable_wait_until_alive_error in openhands/runtime/impl/docker/docker_runtime.py

def _is_retryable_wait_until_alive_error(exception):
    if isinstance(exception, tenacity.RetryError):
        cause = exception.last_attempt.exception()
        return _is_retryable_wait_until_alive_error(cause)

    return isinstance(
        exception,
        (
            ConnectionError,
            httpx.NetworkError,
            httpx.RemoteProtocolError,
            httpx.HTTPStatusError,
        ),
    )

Link of any specific issues this addresses.

Discussions in #7374

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant