We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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?The text was updated successfully, but these errors were encountered: