Skip to content

Commit

Permalink
Improve 9pfs diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Shvedunov committed Feb 11, 2019
1 parent 0d515bb commit 65b0b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/libvirttools/filesystemvolume.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (v *filesystemVolume) Setup() (*libvirtxml.DomainDisk, *libvirtxml.DomainFi
err = fsys.ChownForEmulator(v.volumeMountPoint, v.chownRecursively)
}
if err != nil {
return nil, nil, fmt.Errorf("failed to create vm pod path: %v", err)
return nil, nil, fmt.Errorf("failed to create vm pod path %q: %v", v.volumeMountPoint, err)
}

fsDef := &libvirtxml.DomainFilesystem{
Expand Down

0 comments on commit 65b0b91

Please sign in to comment.