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:
Harshavardhana
2016-07-12 23:21:18 -07:00
committed by Anand Babu (AB) Periasamy
parent 0610527868
commit 3b69b4ada4
5 changed files with 251 additions and 157 deletions
+3 -2
View File
@@ -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
}