Skip to content

Commit

Permalink
refactor: remove leftover ctx in print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
vadasambar committed Nov 30, 2023
1 parent c619b85 commit ee362a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/plugin/node_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type NodeServer struct {
}

func (n NodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublishVolumeRequest) (resp *csi.NodePublishVolumeResponse, err error) {
klog.Infof("mount request: %s, context: %s", req.String(), ctx)
klog.Infof("mount request: %s", req.String())
if len(req.VolumeId) == 0 {
err = status.Error(codes.InvalidArgument, "VolumeId is missing")
return
Expand Down

0 comments on commit ee362a5

Please sign in to comment.