mirror of
https://github.com/pgsty/minio.git
synced 2026-08-04 07:02:49 +03:00
Avoid removing 'tmp' directory inside '.minio.sys' (#3294)
This commit is contained in:
committed by
Harshavardhana
parent
2c3a2241e7
commit
ffbee70e04
@@ -66,11 +66,11 @@ func TestHouseKeeping(t *testing.T) {
|
||||
if errs[index] != nil {
|
||||
return
|
||||
}
|
||||
errs[index] = store.MakeVol(pathJoin(minioMetaBucket, tmpMetaPrefix))
|
||||
errs[index] = store.MakeVol(minioMetaTmpBucket)
|
||||
if errs[index] != nil {
|
||||
return
|
||||
}
|
||||
errs[index] = store.AppendFile(pathJoin(minioMetaBucket, tmpMetaPrefix), "hello.txt", []byte("hello"))
|
||||
errs[index] = store.AppendFile(minioMetaTmpBucket, "hello.txt", []byte("hello"))
|
||||
}(i, store)
|
||||
}
|
||||
wg.Wait()
|
||||
|
||||
Reference in New Issue
Block a user