Re: [grpc-io] Re: grpc++: issues with opencensus tracing [cmake]

2018-10-08 Thread 'Emil Mikulic' via grpc.io
On Mon, Oct 8, 2018 at 10:59 PM Nathan Prat wrote: > It seems to be a step in the good direction, a context without parent is > indeed created when I do not add a dependency on openceus-impl in the java > client. > But the traces are still not exported(zipkin and stdout). > Both the Java client

Re: [grpc-io] Re: Channel closed when running simple example with TLS

2018-10-08 Thread 'Stefano Baghino' via grpc.io
Ok, as reported in the document I linked in this same thread, I was using incompatible versions. On Mon, Oct 8, 2018 at 4:05 PM stefano.baghino via grpc.io < grpc-io@googlegroups.com> wrote: > I looked on the project page and the code repo but it looks like there are > no available changelogs. Is

[grpc-io] Re: Channel closed when running simple example with TLS

2018-10-08 Thread stefano.baghino via grpc.io
I looked on the project page and the code repo but it looks like there are no available changelogs. Is there any way to understand what caused the problem and why it went away? https://opensource.google.com/projects/boringssl On Monday, October 8, 2018 at 3:50:27 PM UTC+2, stefano...@digitalass

[grpc-io] Re: Channel closed when running simple example with TLS

2018-10-08 Thread stefano.baghino via grpc.io
This document: https://github.com/grpc/grpc-java/blob/master/SECURITY.md#getting-netty-tcnative-boringssl-static-from-maven On Monday, October 8, 2018 at 3:47:00 PM UTC+2, stefano...@digitalasset.com wrote: > > I originally followed the instructions on this document to set up my > project and

Re: [grpc-io] Re: grpc++: issues with opencensus tracing [cmake]

2018-10-08 Thread Nathan Prat
It seems to be a step in the good direction, a context without parent is indeed created when I do not add a dependency on openceus-impl in the java client. But the traces are still not exported(zipkin and stdout). Do you have see traces in zipkin/console with your patch? I'm guessing I'm missin

[grpc-io] Re: grpc Thread pools question

2018-10-08 Thread cr22rc
Thanks. On Thursday, October 4, 2018 at 4:25:22 PM UTC-4, Carl Mastrangelo wrote: > > yes, you can call ManagedChannelBuilder.executor() and > ServerBuilder.executor(). I don't have any examples off hand, but we > personally prefer using ForkJoinPool as our executor. > > On Thursday, October 4,

Re: [grpc-io] Re: grpc++: issues with opencensus tracing [cmake]

2018-10-08 Thread 'Emil Mikulic' via grpc.io
To me it looks like there's a bug in GenerateServerContext where missing (and invalid) parent contexts are being passed through. I sent out a pull request to fix this: https://github.com/grpc/grpc/pull/16805 Nathan, could you please take a look and see if this fixes your problem? Without the PR,