Browse Source

avoid close closed channel

pull/1553/head
Chris Lu 4 years ago
parent
commit
ad652ffb97
  1. 2
      weed/filesys/filehandle.go

2
weed/filesys/filehandle.go

@ -185,8 +185,10 @@ func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) err
} }
// stop the goroutine // stop the goroutine
if !fh.dirtyPages.chunkSaveErrChanClosed {
fh.dirtyPages.chunkSaveErrChanClosed = true fh.dirtyPages.chunkSaveErrChanClosed = true
close(fh.dirtyPages.chunkSaveErrChan) close(fh.dirtyPages.chunkSaveErrChan)
}
return nil return nil
} }

Loading…
Cancel
Save