From c1e072de0bbf0a1e860313e28e49e8aa6ddde7ac Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Fri, 21 Sep 2018 23:07:14 +0900 Subject: [PATCH] Fix misspelling of "successfully" --- Makefile | 2 +- pkg/cephfs/controllerserver.go | 4 ++-- pkg/cephfs/nodeserver.go | 6 +++--- pkg/rbd/nodeserver.go | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 8965b52dd..bd672b3a5 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -.PHONY: all rbdplugin +.PHONY: all rbdplugin cephfsplugin RBD_IMAGE_NAME=$(if $(ENV_RBD_IMAGE_NAME),$(ENV_RBD_IMAGE_NAME),quay.io/cephcsi/rbdplugin) RBD_IMAGE_VERSION=$(if $(ENV_RBD_IMAGE_VERSION),$(ENV_RBD_IMAGE_VERSION),v0.3.0) diff --git a/pkg/cephfs/controllerserver.go b/pkg/cephfs/controllerserver.go index eab0b1ca5..1afd761f5 100644 --- a/pkg/cephfs/controllerserver.go +++ b/pkg/cephfs/controllerserver.go @@ -81,7 +81,7 @@ func (cs *controllerServer) CreateVolume(ctx context.Context, req *csi.CreateVol return nil, status.Error(codes.Internal, err.Error()) } - glog.Infof("cephfs: successfuly created volume %s", volId) + glog.Infof("cephfs: successfully created volume %s", volId) } else { glog.Infof("cephfs: volume %s is provisioned statically", volId) } @@ -158,7 +158,7 @@ func (cs *controllerServer) DeleteVolume(ctx context.Context, req *csi.DeleteVol return nil, status.Error(codes.Internal, err.Error()) } - glog.Infof("cephfs: successfuly deleted volume %s", volId) + glog.Infof("cephfs: successfully deleted volume %s", volId) return &csi.DeleteVolumeResponse{}, nil } diff --git a/pkg/cephfs/nodeserver.go b/pkg/cephfs/nodeserver.go index 84b428db3..fd786b7a7 100644 --- a/pkg/cephfs/nodeserver.go +++ b/pkg/cephfs/nodeserver.go @@ -184,7 +184,7 @@ func (ns *nodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublis return nil, status.Error(codes.Internal, err.Error()) } - glog.Infof("cephfs: successfuly bind-mounted volume %s to %s", volId, targetPath) + glog.Infof("cephfs: successfully bind-mounted volume %s to %s", volId, targetPath) return &csi.NodePublishVolumeResponse{}, nil } @@ -203,7 +203,7 @@ func (ns *nodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeUnpu os.Remove(targetPath) - glog.Infof("cephfs: successfuly unbinded volume %s from %s", req.GetVolumeId(), targetPath) + glog.Infof("cephfs: successfully unbinded volume %s from %s", req.GetVolumeId(), targetPath) return &csi.NodeUnpublishVolumeResponse{}, nil } @@ -222,7 +222,7 @@ func (ns *nodeServer) NodeUnstageVolume(ctx context.Context, req *csi.NodeUnstag os.Remove(stagingTargetPath) - glog.Infof("cephfs: successfuly umounted volume %s from %s", req.GetVolumeId(), stagingTargetPath) + glog.Infof("cephfs: successfully umounted volume %s from %s", req.GetVolumeId(), stagingTargetPath) return &csi.NodeUnstageVolumeResponse{}, nil } diff --git a/pkg/rbd/nodeserver.go b/pkg/rbd/nodeserver.go index ca309b18e..91910dc8a 100644 --- a/pkg/rbd/nodeserver.go +++ b/pkg/rbd/nodeserver.go @@ -71,7 +71,7 @@ func (ns *nodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublis if err != nil { return nil, err } - glog.V(4).Infof("rbd image: %s/%s was succesfully mapped at %s\n", req.GetVolumeId(), volOptions.Pool, devicePath) + glog.V(4).Infof("rbd image: %s/%s was successfully mapped at %s\n", req.GetVolumeId(), volOptions.Pool, devicePath) fsType := req.GetVolumeCapability().GetMount().GetFsType() readOnly := req.GetReadonly()