usage typo: Fix creating .minio.sys/background-ops bucket (#8957)

Due to a typo in the code, a cluster was not correctly creating
`background-ops` in all disks and nodes print the following error:

minio3_1  | API: SYSTEM()
minio3_1  | Time: 19:32:45 UTC 02/06/2020
minio3_1  | DeploymentID: d67c20fa-4a1e-41f5-b319-7e3e90f425d8
minio3_1  | Error: Bucket not found: .minio.sys/background-ops
minio3_1  |        2: cmd/data-usage.go:109:cmd.runDataUsageInfo()
minio3_1  |        1: cmd/data-usage.go:56:cmd.runDataUsageInfoUpdateRoutine()

This commit fixes the typo.
This commit is contained in:
Anis Elleuch 2020-02-06 22:12:36 +01:00 committed by GitHub
parent 49df290270
commit 6d5d77f62c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -643,7 +643,7 @@ func initXLMetaVolumesInLocalDisks(storageDisks []StorageAPI, formats []*formatX
// goroutine will return its own instance of index variable. // goroutine will return its own instance of index variable.
index := index index := index
g.Go(func() error { g.Go(func() error {
return makeFormatXLMetaVolumes(storageDisks[index]) return makeFormatXLMetaVolumes(disksToInit[index])
}, index) }, index)
} }