rename to skipCheckParentDir

related to https://github.com/chrislusf/seaweedfs/pull/2761

It's better to default to false.
This commit is contained in:
chrislu
2022-03-16 23:55:31 -07:00
parent d2acde2a61
commit 4042fdf3bb
14 changed files with 459 additions and 445 deletions

View File

@@ -43,7 +43,7 @@ func (f *Filer) appendToFile(targetFile string, data []byte) error {
entry.Chunks = append(entry.Chunks, uploadResult.ToPbFileChunk(assignResult.Fid, offset))
// update the entry
err = f.CreateEntry(context.Background(), entry, false, false, nil, true)
err = f.CreateEntry(context.Background(), entry, false, false, nil, false)
return err
}