X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=control%2Fgrpcserver.go;h=8410f3e6a3ab987a44e0bd001101ed695cc7f83d;hb=refs%2Fchanges%2F66%2F7266%2F1;hp=a30770ee14fb668217801b0df68f7c95798f8ef0;hpb=21b61dd76570beb43afc74289296e831914d9060;p=ric-app%2Frc.git diff --git a/control/grpcserver.go b/control/grpcserver.go index a30770e..8410f3e 100644 --- a/control/grpcserver.go +++ b/control/grpcserver.go @@ -2,10 +2,11 @@ package control import ( "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" - "gerrit.o-ran-sc.org/r/scp/ric-app/protocol/grpc/ricmsgcommrpc/rc" + "gerrit.o-ran-sc.org/r/ric-app/rc/protocol/grpc/ricmsgcommrpc/rc" "google.golang.org/grpc" "google.golang.org/grpc/health" "google.golang.org/grpc/health/grpc_health_v1" + "google.golang.org/grpc/reflection" "net" ) @@ -39,6 +40,7 @@ func StartgRPCRCControlCommServerRoutine() error { // attach the Ping service to the server rc.RegisterMsgCommServer(lgRPCServer, &lRCControlSrv) + reflection.Register(lgRPCServer) //Register to health service grpc_health_v1.RegisterHealthServer(lgRPCServer, health.NewServer())