From 9ee128123fa3635940e8ced5308586d6907d5472 Mon Sep 17 00:00:00 2001 From: riya-singhal31 Date: Tue, 27 Jun 2023 17:04:22 +0530 Subject: [PATCH] cleanup: correct the comment in csi-addons/rbd Signed-off-by: riya-singhal31 --- internal/csi-addons/rbd/network_fence.go | 4 ++-- internal/csi-addons/rbd/reclaimspace.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/csi-addons/rbd/network_fence.go b/internal/csi-addons/rbd/network_fence.go index d1b5d6eab..57199747e 100644 --- a/internal/csi-addons/rbd/network_fence.go +++ b/internal/csi-addons/rbd/network_fence.go @@ -32,8 +32,8 @@ type FenceControllerServer struct { *fence.UnimplementedFenceControllerServer } -// NewFenceControllerServer creates a new IdentityServer which handles -// the Identity Service requests from the CSI-Addons specification. +// NewFenceControllerServer creates a new FenceControllerServer which handles +// the FenceController Service requests from the CSI-Addons specification. func NewFenceControllerServer() *FenceControllerServer { return &FenceControllerServer{} } diff --git a/internal/csi-addons/rbd/reclaimspace.go b/internal/csi-addons/rbd/reclaimspace.go index 0d7d819da..480645ced 100644 --- a/internal/csi-addons/rbd/reclaimspace.go +++ b/internal/csi-addons/rbd/reclaimspace.go @@ -37,8 +37,8 @@ type ReclaimSpaceControllerServer struct { *rs.UnimplementedReclaimSpaceControllerServer } -// NewReclaimSpaceControllerServer creates a new IdentityServer which handles -// the Identity Service requests from the CSI-Addons specification. +// NewReclaimSpaceControllerServer creates a new ReclaimSpaceControllerServer which handles +// the ReclaimSpace Service requests from the CSI-Addons specification. func NewReclaimSpaceControllerServer() *ReclaimSpaceControllerServer { return &ReclaimSpaceControllerServer{} }