Joshua Humphries
Joshua Humphries
In short, the included well-known imports do not have source code info and are not expected to have source code info. If you need source code info, provide your own...
@GautamSinghania, does this mean the URLs for service-2 require a path prefix of `/prefix-2/`? That is generally not valid in gRPC. The [protocol spec](https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md) for gRPC explicitly states that the...
> what would be your suggestion to using multiple services under the same Ingress endpoint? Two ways 1. The simplest is to dispatch to one or the other based on...
> would be the prefix. From what I understand [here](https://github.com/grpc/grpc/blob/master/doc/grpc_xds_features.md), it would be the "Request matching based on Prefix" [A28](https://github.com/grpc/proposal/blob/master/A28-xds-traffic-splitting-and-routing.md) @thunder7553, that proposal is for configuring XDS clients to support...
> This is because nginx gets `/grpc.reflection.v1.ServerReflection/ServerReflectionInfo` as the path. If we were able to get `/org.places.v1.PlacesService/grpc.reflection.v1.ServerReflection/ServerReflectionInfo` it would work since then nginx would know what path to take. But...
@atifhafeez, the gRPC protocol spec makes it pretty clear that the path must `/service-name/method-name`: https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests Currently, `grpcurl` is built on top of the official [gRPC Go](https://pkg.go.dev/google.golang.org/grpc) implementation, which does not...
What is the error you are getting? Is your server requiring client certificates? If not, does `grpcurl` work when using the `-insecure` flag? If not, what error are you getting...
This does not look like an error from grpcurl since grpcurl is implemented in Go, which does not use openssl: ``` Handshake failed with fatal error SSL_ERROR_SSL: error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER. ```...
I think you need to investigate more regarding TLS and Cloud Run. IIUC, it does setup a proxy, in the form of an HTTP load balancer in front of your...
@ritwik12, I'm still subscribed to this repo and answer questions where I can. But I am no longer a committer or maintainer.