From 61a110d9628349a465ccbfe49477cc7525a41d06 Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Mon, 10 Mar 2025 07:20:20 +0200 Subject: [PATCH] examples: Update in-process sources in examples (#11952) Update in-process sources location in examples since they have been migrated from core artifacts. --- examples/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/README.md b/examples/README.md index a07d1b38a1..91fde2c045 100644 --- a/examples/README.md +++ b/examples/README.md @@ -153,9 +153,9 @@ Example bugs not caught by mocked stub tests include: For testing a gRPC client, create the client with a real stub using an -[InProcessChannel](../core/src/main/java/io/grpc/inprocess/InProcessChannelBuilder.java), +[InProcessChannel](../inprocess/src/main/java/io/grpc/inprocess/InProcessChannelBuilder.java), and test it against an -[InProcessServer](../core/src/main/java/io/grpc/inprocess/InProcessServerBuilder.java) +[InProcessServer](../inprocess/src/main/java/io/grpc/inprocess/InProcessServerBuilder.java) with a mock/fake service implementation. For testing a gRPC server, create the server as an InProcessServer,