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.
1 parent 7947b83 commit 5087b9dCopy full SHA for 5087b9d
pkg/flist/cleanup.go
@@ -156,7 +156,7 @@ func (f *flistModule) forceUnmountAndRemove(path string) error {
156
log.Warn().Err(err).Msgf("normal unmount failed for %s, trying lazy unmount", path)
157
158
// Try lazy unmount (MNT_DETACH)
159
- err = syscall.Unmount(path, syscall.MNT_DETACH)
+ err = f.system.Unmount(path, syscall.MNT_DETACH)
160
if err != nil {
161
return errors.Wrapf(err, "lazy unmount also failed for %s", path)
162
}
0 commit comments