mirror of
https://github.com/minio/minio.git
synced 2025-11-28 13:09:09 -05:00
server: Remove max-buckets option and now max buckets is unlimited.
minio server max-buckets option removed. min-free-disk option is now a flag.
This commit is contained in:
@@ -143,7 +143,7 @@ func getNewWebAPI(conf cloudServerConfig) *WebAPI {
|
||||
|
||||
// getNewCloudStorageAPI instantiate a new CloudStorageAPI.
|
||||
func getNewCloudStorageAPI(conf cloudServerConfig) CloudStorageAPI {
|
||||
fs, err := fs.New(conf.Path, conf.MinFreeDisk, conf.MaxBuckets)
|
||||
fs, err := fs.New(conf.Path, conf.MinFreeDisk)
|
||||
fatalIf(err.Trace(), "Initializing filesystem failed.", nil)
|
||||
|
||||
return CloudStorageAPI{
|
||||
|
||||
Reference in New Issue
Block a user