mirror of
https://github.com/pgsty/minio.git
synced 2026-08-11 00:33:28 +03:00
server: Change server startup message. (#2195)
This change brings in the new agreed startup message for the server. Adds additional links point to Minio SDKs as well.
This commit is contained in:
committed by
Anand Babu (AB) Periasamy
parent
0610527868
commit
3b69b4ada4
+3
-2
@@ -44,12 +44,13 @@ func commonTime(modTimes []time.Time) (modTime time.Time) {
|
||||
return modTime
|
||||
}
|
||||
|
||||
// Beginning of unix time is treated as sentinel value here.
|
||||
var timeSentinel = time.Unix(0, 0).UTC()
|
||||
|
||||
// Boot uuids upto disk count, setting the value to UUID sentinel.
|
||||
// Boot modTimes up to disk count, setting the value to time sentinel.
|
||||
func bootModtimes(diskCount int) []time.Time {
|
||||
modTimes := make([]time.Time, diskCount)
|
||||
// Boots up all the uuids.
|
||||
// Boots up all the modtimes.
|
||||
for i := range modTimes {
|
||||
modTimes[i] = timeSentinel
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user