diff --git a/pkg/volume/iscsi/iscsi_util.go b/pkg/volume/iscsi/iscsi_util.go old mode 100755 new mode 100644 index ddac19bd857..8744e2225f0 --- a/pkg/volume/iscsi/iscsi_util.go +++ b/pkg/volume/iscsi/iscsi_util.go @@ -294,6 +294,9 @@ func (util *ISCSIUtil) AttachDisk(b iscsiDiskMounter) error { // mount it globalPDPath := b.manager.MakeGlobalPDName(*b.iscsiDisk) notMnt, err := b.mounter.IsLikelyNotMountPoint(globalPDPath) + if err != nil { + return fmt.Errorf("Heuristic determination of mount point failed:%v", err) + } if !notMnt { glog.Infof("iscsi: %s already mounted", globalPDPath) return nil