From 76f1b4249851016ded3933824b58258d21dd7a69 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Tue, 7 Sep 2021 12:06:14 +0530 Subject: [PATCH] cephfs: correct comment for validateExpandVolumeRequest corrected the function comment for validateExpandVolumeRequest. Signed-off-by: Madhu Rajanna --- internal/cephfs/validator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cephfs/validator.go b/internal/cephfs/validator.go index 9fd154e49..07e38688c 100644 --- a/internal/cephfs/validator.go +++ b/internal/cephfs/validator.go @@ -94,7 +94,7 @@ func (cs *ControllerServer) validateDeleteVolumeRequest() error { return nil } -// Controller expand volume request validation. +// validateExpandVolumeRequest validates the Controller ExpandVolume request. func (cs *ControllerServer) validateExpandVolumeRequest(req *csi.ControllerExpandVolumeRequest) error { if err := cs.Driver.ValidateControllerServiceRequest(csi.ControllerServiceCapability_RPC_EXPAND_VOLUME); err != nil { return fmt.Errorf("invalid ExpandVolumeRequest: %w", err)