Open cfstras opened 10 months ago
I've discovered this by mistake, by having an unwrap() fail in my implementation of init().
unwrap()
init()
As soon as this happens, some bad things occur:
mount
ls
kill -9
pkill -9 macfuse
Workaround: Don't do any work that can panic!() in main?
panic!()
I've discovered this by mistake, by having an
unwrap()
fail in my implementation ofinit()
.As soon as this happens, some bad things occur:
mount
prints every mount up until the fuse line, then hangsls
will hang as soon as it encounters the mountkill -9
(nor any other kill) seems to helppkill -9 macfuse
kills the process, but it just gets restartedWorkaround: Don't do any work that can
panic!()
in main?