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"
|
||||
"time"
|
||||
|
||||
"github.com/dustin/go-humanize"
|
||||
xhttp "github.com/minio/minio/cmd/http"
|
||||
"github.com/minio/minio/cmd/logger"
|
||||
"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.
|
||||
if shouldInitXLDisks(sErrs) && firstDisk {
|
||||
logger.Info("Formatting %v zone, %v set(s), %v drives per set.",
|
||||
zoneCount, setCount, drivesPerSet)
|
||||
logger.Info("Formatting %s zone, %v set(s), %v drives per set.",
|
||||
humanize.Ordinal(zoneCount), setCount, drivesPerSet)
|
||||
|
||||
// Initialize erasure code format on disks
|
||||
format, err = initFormatXL(GlobalContext, storageDisks, setCount, drivesPerSet, deploymentID)
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
}
|
||||
|
||||
// Assign globalDeploymentID on first run for the
|
||||
// minio server managing the first disk
|
||||
globalDeploymentID = format.ID
|
||||
|
Loading…
Reference in New Issue
Block a user