Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix misspelling of "successfully" #78

Merged
merged 1 commit into from
Sep 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not a typo, but just a very small fix so I added it to this PR. If this PR should be for typo fix only or this change is not necessary, please let me know. I will update.


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)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cephfs/controllerserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down Expand Up @@ -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
}
Expand Down
6 changes: 3 additions & 3 deletions pkg/cephfs/nodeserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
}
Expand All @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/rbd/nodeserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down