From 6e2f5995bcc4a5e79d1aed073a2827a519dabb01 Mon Sep 17 00:00:00 2001 From: Daniel Canter Date: Thu, 8 Apr 2021 07:46:36 -0700 Subject: [PATCH] Remove incorrect comment from ncproxy grpc service struct The GRPC service doesn't hold a mutex. This was left in from an older iteration where the client map would get updated in the grpc service. Signed-off-by: Daniel Canter --- cmd/ncproxy/ncproxy.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmd/ncproxy/ncproxy.go b/cmd/ncproxy/ncproxy.go index 462aa43939..dd28a50cb7 100644 --- a/cmd/ncproxy/ncproxy.go +++ b/cmd/ncproxy/ncproxy.go @@ -23,10 +23,8 @@ import ( "google.golang.org/grpc/status" ) -// GRPC service exposed for use by a Node Network Service. Holds a mutex for -// updating global client. -type grpcService struct { -} +// GRPC service exposed for use by a Node Network Service. +type grpcService struct{} var _ ncproxygrpc.NetworkConfigProxyServer = &grpcService{}