You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any way to unmount cleanly? Currently I have to fusermount -u every time I exit. I tried dropping MountHandle on custom CTRL-C handler but it doesn't seem to do the trick. See add unmount support #78
Is there any way to detect when fusermount -u has been called on my mount point? The MountHandle seems to stay alive while I'd expect the .await to resolve when unmounted.
I don't have a deep mental model of FUSE so please bear with me if my questions don't make sense.
The text was updated successfully, but these errors were encountered:
alvaro-cuesta
changed the title
How to cleanly unmount?
How to cleanly unmount? How to detect external unmount?
Dec 5, 2023
I note only BlockFuseConnection checks for filesystem umount, you can use Session::mount instead of Session::mount_with_unprivileged to detect filesystem umount
Is there any way to unmount cleanly? Currently I have toSee add unmount support #78fusermount -u
every time I exit. I tried droppingMountHandle
on custom CTRL-C handler but it doesn't seem to do the trick.fusermount -u
has been called on my mount point? TheMountHandle
seems to stay alive while I'd expect the.await
to resolve when unmounted.I don't have a deep mental model of FUSE so please bear with me if my questions don't make sense.
The text was updated successfully, but these errors were encountered: