|
|
@ -179,12 +179,12 @@ func (c *commandVolumeList) writeDiskInfo(writer io.Writer, t *master_pb.DiskInf |
|
|
|
continue |
|
|
|
} |
|
|
|
|
|
|
|
var destroyTimeDisplay string |
|
|
|
var expireAtString string |
|
|
|
destroyTime := ecShardInfo.ExpireAtSec |
|
|
|
if destroyTime > 0 { |
|
|
|
destroyTimeDisplay = time.Unix(int64(destroyTime), 0).Format("2006-01-02 15:04:05") |
|
|
|
expireAtString = fmt.Sprintf("expireAt:%s", time.Unix(int64(destroyTime), 0).Format("2006-01-02 15:04:05")) |
|
|
|
} |
|
|
|
output(verbosityLevel >= 5, writer, " ec volume id:%v collection:%v shards:%v destroyTime:%s\n", ecShardInfo.Id, ecShardInfo.Collection, erasure_coding.ShardBits(ecShardInfo.EcIndexBits).ShardIds(), destroyTimeDisplay) |
|
|
|
output(verbosityLevel >= 5, writer, " ec volume id:%v collection:%v shards:%v %s\n", ecShardInfo.Id, ecShardInfo.Collection, erasure_coding.ShardBits(ecShardInfo.EcIndexBits).ShardIds(), expireAtString) |
|
|
|
} |
|
|
|
output(verbosityLevel >= 4, writer, " Disk %s %+v \n", diskType, s) |
|
|
|
return s |
|
|
|