Skip to content

Commit

Permalink
fix: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
paullaffitte committed Feb 18, 2021
1 parent 1d5523e commit 2c3917d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/controller/publisher.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 2c3917d

Please sign in to comment.