weed mount add ttl option

This commit is contained in:
Chris Lu
2018-06-11 23:13:33 -07:00
parent 98110c1697
commit 5bd72696ac
8 changed files with 94 additions and 68 deletions

View File

@@ -73,7 +73,8 @@ func runMount(cmd *Command, args []string) bool {
filerAddress := fmt.Sprintf("%s:%d", hostnameAndPort[0], filerGrpcPort)
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
filerAddress, *mountOptions.collection, *mountOptions.replication, *mountOptions.chunkSizeLimitMB))
filerAddress, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
*mountOptions.chunkSizeLimitMB))
if err != nil {
fuse.Unmount(*mountOptions.dir)
}