From 48265637c460fa6159d08bbe00cca10a27324efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nolasco=20Napole=C3=A3o?= Date: Tue, 15 Oct 2024 13:41:44 -0700 Subject: [PATCH] Fix readme (#37664) Corrects bazel run command in README. It does not match the bazel command in the BUILD file. Closes #37664 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37664 from nolasconapoleao:fix_interceptor_readme 42d828f2ec1423b8ced0b000532efabbc1af7fde PiperOrigin-RevId: 686223940 --- examples/cpp/interceptors/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cpp/interceptors/README.md b/examples/cpp/interceptors/README.md index 26e374463be..be28145774d 100644 --- a/examples/cpp/interceptors/README.md +++ b/examples/cpp/interceptors/README.md @@ -15,11 +15,11 @@ On the server-side, a very simple logging interceptor is added that simply logs To run the server - ``` -$ tools/bazel run examples/cpp/interceptors:server +$ tools/bazel run examples/cpp/interceptors:keyvaluestore_server ``` To run the client (on a different terminal) - ``` -$ tools/bazel run examples/cpp/interceptors:client +$ tools/bazel run examples/cpp/interceptors:keyvaluestore_client ```