From 4d6b37ee50101d33b128be80da797df689dcac73 Mon Sep 17 00:00:00 2001 From: Sally O'Malley Date: Fri, 23 Apr 2021 16:17:00 -0400 Subject: [PATCH] update grpc example commands (#756) --- .../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 ```