我正在写一个go客户端来消费
conn, err := grpc.DialContext(ctx, serverAddr, grpc.WithBlock(), grpc.WithReturnConnectionError(), getTransportCredential(false))
上面的调用会挂起,直到上下文超时并返回以下错误
failed to dial: context deadline exceeded: connection error: desc = "error reading server preface: http2: frame too large"
getTransportCredential(insecure bool)
定义如下
func getTransportCredential(insecure bool) grpc.DialOption {
if insecure {
return grpc.WithTransportCredentials(insecure2.NewCredentials())
}
rootCAs, err := x509.SystemCertPool()
if err != nil {
panic(err)
}
if rootCAs == nil {
fmt.Println("SystemCertPool is nil")
rootCAs = x509.NewCertPool()
}
caCert := `-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----`
if caCert != "" {
// Append our cert to the system pool
if ok := rootCAs.AppendCertsFromPEM([]byte(caCert)); !ok {
fmt.Println("Couldn't add cert to the cert pool")
}
}
creds := credentials.NewClientTLSFromCert(rootCAs, "")
fmt.Printf("%+v\n", creds.Info())
return grpc.WithTransportCredentials(creds)
}
你能帮我解决这个问题吗?
我可以
grpcurl
从我的机器到服务器并获得成功的响应。