mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-05-04 13:37:49 +08:00
avoid passe lock by value
This commit is contained in:
parent
8908810376
commit
9e5b1eef9b
@ -2,11 +2,12 @@ package mount
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/seaweedfs/seaweedfs/weed/glog"
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
||||||
"github.com/seaweedfs/seaweedfs/weed/mount/page_writer"
|
"github.com/seaweedfs/seaweedfs/weed/mount/page_writer"
|
||||||
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
||||||
"io"
|
|
||||||
"sync"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type ChunkedDirtyPages struct {
|
type ChunkedDirtyPages struct {
|
||||||
@ -82,7 +83,7 @@ func (pages *ChunkedDirtyPages) saveChunkedFileIntervalToStorage(reader io.Reade
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (pages ChunkedDirtyPages) Destroy() {
|
func (pages *ChunkedDirtyPages) Destroy() {
|
||||||
pages.uploadPipeline.Shutdown()
|
pages.uploadPipeline.Shutdown()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user