diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-10-19 00:12:42 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-10-19 00:12:42 -0700 |
| commit | 69f0da5d73b6f681b2313e3230a39e254693f453 (patch) | |
| tree | e60cd9ca1b38f6ef648043e954898084f429a0c7 /weed/filesys/wfs_write.go | |
| parent | da6b9e673b3ab1cfe87db40eb7eff540316f8b13 (diff) | |
| download | seaweedfs-69f0da5d73b6f681b2313e3230a39e254693f453.tar.xz seaweedfs-69f0da5d73b6f681b2313e3230a39e254693f453.zip | |
mount: pass along replication and collection parameters
Diffstat (limited to 'weed/filesys/wfs_write.go')
| -rw-r--r-- | weed/filesys/wfs_write.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/wfs_write.go b/weed/filesys/wfs_write.go index e7db31203..27b2297ed 100644 --- a/weed/filesys/wfs_write.go +++ b/weed/filesys/wfs_write.go @@ -65,6 +65,6 @@ func (wfs *WFS) saveDataAsChunk(dir string) filer.SaveDataAsChunkFunctionType { wfs.chunkCache.SetChunk(fileId, data) chunk = uploadResult.ToPbFileChunk(fileId, offset) - return chunk, "", "", nil + return chunk, collection, replication, nil } } |
