fs: start even if there are not enough free space (#3606)

This commit is contained in:
Andrei Kopats 2017-01-20 20:30:20 +03:00 committed by Harshavardhana
parent 80f1387877
commit c3f7d1026f

View file

@ -154,11 +154,6 @@ func newFSObjectLayer(fsPath string) (ObjectLayer, error) {
},
}
// Validate if disk has enough free space to use.
if err = fs.checkDiskFree(); err != nil {
return nil, err
}
// Initialize and load bucket policies.
err = initBucketPolicies(fs)
if err != nil {