mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-09 03:57:41 +00:00
Merge pull request #10092 from markturansky/unmount_error_msg
Fixed formatting of unmount error message
This commit is contained in:
commit
3839636cc5
@ -126,7 +126,7 @@ func makeMountArgs(source, target, fstype string, options []string) []string {
|
|||||||
|
|
||||||
// Unmount unmounts the target.
|
// Unmount unmounts the target.
|
||||||
func (mounter *Mounter) Unmount(target string) error {
|
func (mounter *Mounter) Unmount(target string) error {
|
||||||
glog.V(5).Infof("Unmounting %s %v")
|
glog.V(5).Infof("Unmounting %s", target)
|
||||||
command := exec.Command("umount", target)
|
command := exec.Command("umount", target)
|
||||||
output, err := command.CombinedOutput()
|
output, err := command.CombinedOutput()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user