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

Use netloc from urlparse to specify the host #79

Merged
merged 2 commits into from
Sep 3, 2024

Commits on Sep 3, 2024

  1. Use netloc from urlparse to specify the host

    This is because `netloc` is formatted to be the network location, and
    wraps ipv6 in square brackets, which we lose if we just use the `host`
    field.
    
    `netloc` also contains the port if a port was in the original uri.  We
    need to append the default port only if the original uri didn't have a
    port.
    
    This fixes an issue when creating a grpc Channel with ipv6 addresses.
    
    Signed-off-by: Sahas Subramanian <[email protected]>
    shsms committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    6005f9d View commit details
    Browse the repository at this point in the history
  2. Update release notes

    Signed-off-by: Sahas Subramanian <[email protected]>
    shsms committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    13f223e View commit details
    Browse the repository at this point in the history