type google.golang.org/grpc/internal/transport.NewStreamError
12 uses
google.golang.org/grpc/internal/transport (current package)
http2_client.go#L726: type NewStreamError struct {
http2_client.go#L732: func (e NewStreamError) Error() string {
http2_client.go#L761: return nil, &NewStreamError{Err: status.Errorf(codes.Unavailable, "credentials type %q does not implement the AuthorityValidator interface, but authority override specified with CallAuthority call option", t.authInfo.AuthType())}
http2_client.go#L764: return nil, &NewStreamError{Err: status.Errorf(codes.Unavailable, "failed to validate authority %q : %v", callHdr.Authority, err)}
http2_client.go#L773: return nil, &NewStreamError{Err: err, AllowTransparentRetry: false}
http2_client.go#L877: return nil, &NewStreamError{Err: err, AllowTransparentRetry: true}
http2_client.go#L883: return nil, &NewStreamError{Err: hdrListSizeErr}
http2_client.go#L889: return nil, &NewStreamError{Err: ContextErr(ctx.Err())}
http2_client.go#L891: return nil, &NewStreamError{Err: errStreamDrain, AllowTransparentRetry: true}
http2_client.go#L893: return nil, &NewStreamError{Err: ErrConnClosing, AllowTransparentRetry: true}
google.golang.org/grpc
rpc_util.go#L1027: case *transport.NewStreamError:
stream.go#L517: nse, ok := err.(*transport.NewStreamError)