fix azure disk mounter issue

change loginfo level from 2 to 4
pull/6/head
andyzhangx 2017-09-11 05:38:29 +00:00
parent e821e531db
commit 2a9cb3842c
1 changed files with 2 additions and 1 deletions

View File

@ -79,7 +79,8 @@ func (m *azureDiskMounter) SetUpAt(dir string, fsGroup *int64) error {
return err
}
if !mountPoint {
return fmt.Errorf("azureDisk - Not a mounting point for disk %s on %s", diskName, dir)
glog.V(4).Infof("azureDisk - already mounted to target %s", dir)
return nil
}
if err := os.MkdirAll(dir, 0750); err != nil {