You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use netloc from urlparse to specify the host (#79)
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.
0 commit comments