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

View File

@@ -42,6 +42,11 @@ func newXLObjects(exportPaths ...string) (ObjectLayer, error) {
if err != nil {
return nil, err
}
// Cleanup all temporary entries.
cleanupAllTmpEntries(storage)
// Return successfully initialized object layer.
return xlObjects{storage}, nil
}