Carlos O'Ryan
Carlos O'Ryan
I am told that using `GRPC_ARG_USE_LOCAL_SUBCHANNEL_POOL` (aka `"grpc.use_local_subchannel_pool"`): https://github.com/grpc/grpc/blob/1475ed4fb72b6d52bb02b84abd1a6dc69e293b2f/include/grpc/impl/codegen/grpc_types.h#L440-L442 is more efficient than using the `"grpc.channel_id"`: https://github.com/grpc/grpc/blob/1475ed4fb72b6d52bb02b84abd1a6dc69e293b2f/include/grpc/impl/codegen/grpc_types.h#L445-L446 We should change the code generator and any place where we manually configure...
Support service account credentials. Note that gRPC does not support scopes, while [aip/4112](https://google.aip.dev/auth/4112) requires supporting at least one scope. This suggests we may want to have two implementations (or at...
While running `dnf makecache` the build got this error: https://pantheon.corp.google.com/cloud-build/builds;region=us-east1/a54bf28f-51c9-41a5-b995-a6db9e257366;step=0?project=cloud-cpp-testing-resources ``` time="2022-07-10T13:07:39Z" level=info msg="Running: [/bin/sh -c dnf makecache && dnf install -y ccache cmake curl findutils gcc-c++ git make ninja-build...
Unless the build is specifically intended to test MSVC 2017 or MSVC 2019, we should use MSVC 2022. - [x] Change the build scripts to use the right path based...
This one may be hard because we use a script to install `google-cloud-sdk`. Maybe with a regex manager we can detect the current version, and then use this as a...
renovate bot groups all the updates for the "same dependency" into a single PR. As best I can tell, the name of the dependency is used to determine if two...
With recent (>= 7.71.0) versions of `libcurl` one can use the native CA on Windows: https://stackoverflow.com/questions/37551409/configure-curl-to-use-default-system-cert-store-on-windows https://curl.se/libcurl/c/CURLOPT_SSL_OPTIONS.html We need to make sure this still works when libcurl was compiled against...
RPCs can be annotated with `option deprecated = true`, e.g.: https://github.com/googleapis/googleapis/blob/25d691b074e0b932e1c3f8a690ced8ddec8ae50e/google/container/v1/cluster_service.proto#L178-L194 For new libraries, we should not generate any RPCs that are deprecated, if necessary by adding them to the...
What is says in the title. Removing a function from `servicemanagement` went undetected.