mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-12 03:37:59 +08:00
Merge pull request #955 from kkoroviev/fix-fuse-heisenbug
FUSE: Stop treating "no errors" as an error
This commit is contained in:
commit
905f0a5b4c
@ -53,8 +53,9 @@ func (m *mount) mount() error {
|
||||
go func() {
|
||||
err := fs.Serve(m.fuseConn, m.filesys)
|
||||
log.Debugf("Mounting %s -- fs.Serve returned (%s)", err)
|
||||
errs <- err
|
||||
close(errs)
|
||||
if err != nil {
|
||||
errs <- err
|
||||
}
|
||||
}()
|
||||
|
||||
// wait for the mount process to be done, or timed out.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user