mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
switch back to in memory uploading for now
This commit is contained in:
parent
9a6aa00e9d
commit
55d547afec
|
@ -38,8 +38,8 @@ type FileHandle struct {
|
|||
func newFileHandle(file *File, uid, gid uint32, writeOnly bool) *FileHandle {
|
||||
fh := &FileHandle{
|
||||
f: file,
|
||||
// dirtyPages: newContinuousDirtyPages(file, writeOnly),
|
||||
dirtyPages: newTempFileDirtyPages(file, writeOnly),
|
||||
dirtyPages: newContinuousDirtyPages(file, writeOnly),
|
||||
/// dirtyPages: newTempFileDirtyPages(file, writeOnly),
|
||||
Uid: uid,
|
||||
Gid: gid,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue