mirror of
https://github.com/minio/minio.git
synced 2025-01-11 15:03:22 -05:00
add formatting message for zones in ordinals (#9596)
Unlike the message > Formatting 2 zone, 1 set(s), 6 drives per set. It is more readable as ordinal > Formatting 2nd zone, 1 set(s), 6 drives per set.
This commit is contained in:
parent
af0309371e
commit
9c85928740
@ -26,6 +26,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/dustin/go-humanize"
|
||||||
xhttp "github.com/minio/minio/cmd/http"
|
xhttp "github.com/minio/minio/cmd/http"
|
||||||
"github.com/minio/minio/cmd/logger"
|
"github.com/minio/minio/cmd/logger"
|
||||||
"github.com/minio/minio/cmd/rest"
|
"github.com/minio/minio/cmd/rest"
|
||||||
@ -247,14 +248,15 @@ func connectLoadInitFormats(retryCount int, firstDisk bool, endpoints Endpoints,
|
|||||||
|
|
||||||
// All disks report unformatted we should initialized everyone.
|
// All disks report unformatted we should initialized everyone.
|
||||||
if shouldInitXLDisks(sErrs) && firstDisk {
|
if shouldInitXLDisks(sErrs) && firstDisk {
|
||||||
logger.Info("Formatting %v zone, %v set(s), %v drives per set.",
|
logger.Info("Formatting %s zone, %v set(s), %v drives per set.",
|
||||||
zoneCount, setCount, drivesPerSet)
|
humanize.Ordinal(zoneCount), setCount, drivesPerSet)
|
||||||
|
|
||||||
// Initialize erasure code format on disks
|
// Initialize erasure code format on disks
|
||||||
format, err = initFormatXL(GlobalContext, storageDisks, setCount, drivesPerSet, deploymentID)
|
format, err = initFormatXL(GlobalContext, storageDisks, setCount, drivesPerSet, deploymentID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Assign globalDeploymentID on first run for the
|
// Assign globalDeploymentID on first run for the
|
||||||
// minio server managing the first disk
|
// minio server managing the first disk
|
||||||
globalDeploymentID = format.ID
|
globalDeploymentID = format.ID
|
||||||
|
Loading…
Reference in New Issue
Block a user