diff --git a/grpc/grpcserver.go b/grpc/grpcserver.go index 0eb12001..5c8cb734 100644 --- a/grpc/grpcserver.go +++ b/grpc/grpcserver.go @@ -36,7 +36,7 @@ type serviceImpl struct { // RegisterGRPCServer registers the given grpc.Server with // a Universe for GetFromPeer calls over RPC. In order for traces // to propogate properly, create the grpcServer with an opencensus -// ServerHandler +// ServerHandler (https://godoc.org/go.opencensus.io/plugin/ocgrpc#example-ServerHandler) func RegisterGRPCServer(universe *gc.Universe, grpcServer *grpc.Server) { pb.RegisterGalaxyCacheServer(grpcServer, &serviceImpl{universe: universe}) }