Skip to content

Commit 70065c4

Browse files
author
Hantao (Will) Wang
committed
fmt
1 parent 9d5bbc3 commit 70065c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/gce-pd-csi-driver/node.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ func (ns *GCENodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePub
187187
func (ns *GCENodeServer) NodeUnpublishVolume(ctx context.Context, req *csi.NodeUnpublishVolumeRequest) (*csi.NodeUnpublishVolumeResponse, error) {
188188
klog.V(4).Infof("NodeUnpublishVolume called with args: %v", req)
189189

190-
// Validate Arguments
190+
// Validate Arguments
191191
targetPath := req.GetTargetPath()
192192
volID := req.GetVolumeId()
193193
if len(volID) == 0 {
@@ -311,7 +311,7 @@ func (ns *GCENodeServer) NodeStageVolume(ctx context.Context, req *csi.NodeStage
311311
func (ns *GCENodeServer) NodeUnstageVolume(ctx context.Context, req *csi.NodeUnstageVolumeRequest) (*csi.NodeUnstageVolumeResponse, error) {
312312
klog.V(4).Infof("NodeUnstageVolume called with req: %#v", req)
313313

314-
// Validate arguments
314+
// Validate arguments
315315
volumeID := req.GetVolumeId()
316316
stagingTargetPath := req.GetStagingTargetPath()
317317
if len(volumeID) == 0 {

0 commit comments

Comments
 (0)