Support 1GB disk size (#6137)

Pivotal CF by default has 1GB disk option which causes minio to not start
This commit is contained in:
Krishna Srinivas 2018-07-09 18:23:50 -07:00 committed by kannappanr
parent b181a693fb
commit 40ed0d1f5d
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ import (
)
const (
diskMinFreeSpace = 1 * humanize.GiByte // Min 1GiB free space.
diskMinTotalSpace = diskMinFreeSpace // Min 1GiB total space.
diskMinFreeSpace = 900 * humanize.MiByte // Min 900MiB free space.
diskMinTotalSpace = diskMinFreeSpace // Min 900MiB total space.
maxAllowedIOError = 5
)