xl/fs: cleanup '/.minio/tmp' directory on each initialization. (#1490)

This commit is contained in:
Harshavardhana
2016-05-05 01:54:43 -07:00
committed by Anand Babu (AB) Periasamy
parent ad40036cba
commit 46680788f9
4 changed files with 31 additions and 11 deletions
+5
View File
@@ -46,6 +46,11 @@ func newFSObjects(exportPath string) (ObjectLayer, error) {
return nil, err
}
}
// Cleanup all temp entries upon start.
cleanupAllTmpEntries(storage)
// Return successfully initialized object layer.
return fsObjects{storage}, nil
}