filer: fix configuration settings

This commit is contained in:
Chris Lu 2020-04-07 01:30:53 -07:00
parent 90d576affe
commit 54debdc6f7

View File

@ -91,10 +91,10 @@ func NewFilerServer(defaultMux, readonlyMux *http.ServeMux, option *FilerOption)
util.LoadConfiguration("notification", false) util.LoadConfiguration("notification", false)
fs.option.recursiveDelete = v.GetBool("filer.options.recursive_delete") fs.option.recursiveDelete = v.GetBool("filer.options.recursive_delete")
v.Set("filer.option.buckets_folder", "/buckets") v.Set("filer.options.buckets_folder", "/buckets")
v.Set("filer.option.queues_folder", "/queues") v.Set("filer.options.queues_folder", "/queues")
fs.filer.DirBucketsPath = v.GetString("filer.option.buckets_folder") fs.filer.DirBucketsPath = v.GetString("filer.options.buckets_folder")
fs.filer.DirQueuesPath = v.GetString("filer.option.queues_folder") fs.filer.DirQueuesPath = v.GetString("filer.options.queues_folder")
fs.filer.LoadConfiguration(v) fs.filer.LoadConfiguration(v)
notification.LoadConfiguration(v, "notification.") notification.LoadConfiguration(v, "notification.")