connect proxy grpc server to database

This commit is contained in:
Alisdair MacLeod
2026-01-26 15:28:50 +00:00
parent 94503465ee
commit e3a026bf1c
2 changed files with 12 additions and 30 deletions

View File

@@ -150,7 +150,7 @@ func (s *BaseServer) GRPCServer() *grpc.Server {
}
mgmtProto.RegisterManagementServiceServer(gRPCAPIHandler, srv)
proxyService := nbgrpc.NewProxyServiceServer()
proxyService := nbgrpc.NewProxyServiceServer(s.Store())
mgmtProto.RegisterProxyServiceServer(gRPCAPIHandler, proxyService)
log.Info("ProxyService registered on gRPC server")