We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 33389c1 + 2db8ef4 commit 3c4464bCopy full SHA for 3c4464b
pkg/gce-pd-csi-driver/node.go
@@ -91,7 +91,7 @@ func getDefaultFsType() string {
91
}
92
func (ns *GCENodeServer) isVolumePathMounted(path string) bool {
93
notMnt, err := ns.Mounter.Interface.IsLikelyNotMountPoint(path)
94
- klog.V(4).Infof("NodePublishVolume check volume path %s is mounted %t: error %v", path, !notMnt, err)
+ klog.V(4).Infof("Checking volume path %s is mounted %t: error %v", path, !notMnt, err)
95
if err == nil && !notMnt {
96
// TODO(#95): check if mount is compatible. Return OK if it is, or appropriate error.
97
/*
0 commit comments