[grpc-io] gRPC-Java v1.34.0 Released

2020-12-01 Thread 'Chengyuan Zhang' via grpc.io
gRPC Java 1.34.0 is released and should be available on Maven Central and JCenter. https://github.com/grpc/grpc-java/releases/tag/v1.34.0 gRPC Java 1.34.0 Release NotesAPI Changes api: added io.grpc.ForwardingServerBuilder (#7633 ) New Features

[grpc-io]  Grpc community meetup - see you in 2021!

2020-12-01 Thread 'Jamie Rachel' via grpc.io
On behalf of the community meetup organizers we would like to extend our gratitude for all who participated in the monthly gRPC meetups this year. We look forward to reconvening on the fourth Tuesday of the month, January 26, 2021. → click to add to your calendar

Re: [grpc-io] gRPC-Web client in JavaScript, gRPC server in Python: is it possible?

2020-12-01 Thread 'Stanley Cheung' via grpc.io
Does it work if you follow the quick start tutorial and use a Node server? If that works, swap out the Node server with your Python server. That way you can at least be sure that the JS and the Envoy parts are working correctly. On Tue, Dec 1, 2020 at 7:43 AM Chris Majewski <

Re: [grpc-io] Re: Async Helloworld leaks memory

2020-12-01 Thread Jeff Steger
In the example, the shutdown logic should include the following to avoid memory leak on exit: // Drain the cq_ that was created void* tag = nullptr; bool ignored_ok(false); while (cq_->Next(, _ok)) { CallData* cd = static_cast(tag); delete cd; } On Fri, Oct 30, 2020 at 6:51 PM Christopher

[grpc-io] gRPC-Web client in JavaScript, gRPC server in Python: is it possible?

2020-12-01 Thread Chris Majewski
I'm working on a proof-of-concept using gRPC-Web. I was able to get the Quick Start tutorial working. My next challenge is to adapt this demo by writing a gRPC-Web client in JavaScript that talks to my (very simple) gRPC server written in

[grpc-io] How gRPC server can determine the client's gNMI.proto version ?

2020-12-01 Thread Shikha Chowdhary
Hello, I am using gNMI proto and it supports different version/option like 020, 040, 070 etc. How gRPC server can determine which version of gNMI.proto is requesting data? Each version is little different in terms of variables. -Thanks Shikha -- You received this message because you are