[#1] Fix project name in control service

Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
This commit is contained in:
Stanislav Bogatyrev 2023-02-03 19:58:09 +03:00 committed by Stanislav Bogatyrev
parent f825cfac78
commit c761a95eef
12 changed files with 37 additions and 37 deletions

View file

@ -19,7 +19,7 @@ type Server struct {
// HealthChecker is component interface for calculating
// the current health status of a node.
type HealthChecker interface {
// Must calculate and return current status of the node in NeoFS network map.
// Must calculate and return current status of the node in FrostFS network map.
//
// If status can not be calculated for any reason,
// control.netmapStatus_STATUS_UNDEFINED should be returned.

View file

@ -8,7 +8,7 @@ import (
"google.golang.org/grpc/status"
)
// SetNetmapStatus sets node status in NeoFS network.
// SetNetmapStatus sets node status in FrostFS network.
//
// If request is unsigned or signed by disallowed key, permission error returns.
func (s *Server) SetNetmapStatus(ctx context.Context, req *control.SetNetmapStatusRequest) (*control.SetNetmapStatusResponse, error) {