From 2c3917d8c5b597969bfa99b4546fd3d9890bc59d Mon Sep 17 00:00:00 2001 From: Paul Laffitte Date: Fri, 12 Feb 2021 18:55:34 +0700 Subject: [PATCH] fix: fix typos --- pkg/controller/publisher.go | 2 +- pkg/node/node.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controller/publisher.go b/pkg/controller/publisher.go index ac1651e7..a7f35864 100644 --- a/pkg/controller/publisher.go +++ b/pkg/controller/publisher.go @@ -76,7 +76,7 @@ func (driver *Driver) ControllerPublishVolume(ctx context.Context, req *csi.Cont return nil, err } - klog.Infof("succesfully mapped volume %s for initiator %s", req.GetVolumeId(), initiatorName) + klog.Infof("successfully mapped volume %s for initiator %s", req.GetVolumeId(), initiatorName) return &csi.ControllerPublishVolumeResponse{ PublishContext: map[string]string{"lun": strconv.Itoa(lun)}, }, nil diff --git a/pkg/node/node.go b/pkg/node/node.go index 6d06e964..af66dfa5 100644 --- a/pkg/node/node.go +++ b/pkg/node/node.go @@ -167,7 +167,7 @@ func (driver *Driver) NodePublishVolume(ctx context.Context, req *csi.NodePublis return nil, status.Error(codes.Internal, err.Error()) } - klog.Infof("succesfully mounted volume at %s", req.GetTargetPath()) + klog.Infof("successfully mounted volume at %s", req.GetTargetPath()) return &csi.NodePublishVolumeResponse{}, nil }