[grpc-io] gRPC-go Release 1.33.1

2020-10-20 Thread 'Menghan Li' via grpc.io
gRPC-go 1.33.1 is now released. Release 1.33.0 is skipped because we mistakenly tagged v1.33.0 at the wrong commit. Full release notes: API Changes - connectivity: remove unused, experimental Reporter interface (#3875 ) New Features - xds

[grpc-io] Using libreSSL and grpc in application

2020-10-20 Thread Dilip ND
Iam creating a C++ application. It uses libreSSL (LibTLS) for communicating with some modules and uses gRPC for communicating with other modules. But while linking i get the below error. Is there any workaround for this.? Is it possible to use libreSSL instead of openssl in grpc? (by building

Re: [grpc-io] Is there a C++ Any.pack() equivalent?

2020-10-20 Thread Russell Wu
In C++, `error_details` in grpc::Status is a string. So you probably want to serialize your object to the wire format or json. If there's a Any field in a message, you should be able to do something like this: ``` MyMessage msg; Any any = msg.mutable_someanyfield(); any->PackFrom(myobject); ```