[grpc-io] gRFC L114: Node Server Connection Injection

2024-02-09 Thread 'Michael Lumish' via grpc.io
I have written a gRFC proposing to add a new connection injection API to the Node gRPC Server class: https://github.com/grpc/proposal/pull/418 Comments welcome. -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and

[grpc-io] Re: Setting gRPC internal threads' affinity

2024-02-09 Thread Dan Cohen
Hi AJ, If I may - a follow-up question after looking a little bit into the EventEngine interface. I need to satisfy a very minimal requirement - being able to control the number of internal threads and the cpu affinity of those threads. I wouldn't want to change any other default behavior of

[grpc-io] "Certificate verification failed to find relevant CRL file" error

2024-02-09 Thread Tim
I'm trying to use a CRL to revoke a certificate. I've generated the CRL and verified the cert is revoked with 'openssl verify -crl_check ...' and it correctly outputs the cert is revoked. When I call options.set_crl_directory with the absolute path to the directory the crl is in, when I

[grpc-io] Re: Getting SIGABRT when starting service with TLS

2024-02-09 Thread Tim
Not really. gRPC logs are enabled through an env var, and even then, you need to enable specific components. Anyway, I found the fix was I needed to call tlsOpts.watch_root_certs(); tlsOpts.watch_identity_key_cert_pairs(); If these need to be called, I don't see why I should have to call them