From e5635e05f3135df07c858f4559290b255c9f0639 Mon Sep 17 00:00:00 2001 From: Sally O'Malley Date: Thu, 22 Apr 2021 14:23:55 -0400 Subject: [PATCH] update grpc example commands --- .../google.golang.org/grpc/otelgrpc/example/README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/instrumentation/google.golang.org/grpc/otelgrpc/example/README.md b/instrumentation/google.golang.org/grpc/otelgrpc/example/README.md index ff53b6cc7bc..1d80b9dea13 100644 --- a/instrumentation/google.golang.org/grpc/otelgrpc/example/README.md +++ b/instrumentation/google.golang.org/grpc/otelgrpc/example/README.md @@ -7,8 +7,6 @@ Traces client and server calls via interceptors. Only required if the service definition (.proto) changes. ```sh -cd ./example/grpc - # protobuf v1.3.2 protoc -I api --go_out=plugins=grpc,paths=source_relative:./api api/hello-service.proto ``` @@ -16,8 +14,6 @@ protoc -I api --go_out=plugins=grpc,paths=source_relative:./api api/hello-servic ### Run server ```sh -cd ./example/grpc - go run ./server ```