Merge pull request #7543 from heyitsanthony/fix-timeseries

*: fix gosimple warning for fmt.Sprintf("%s")
release-3.2
Anthony Romano 2017-03-20 15:02:13 -07:00 committed by GitHub
commit 3a1368d4d2
2 changed files with 4 additions and 4 deletions

View File

@ -178,7 +178,7 @@ func (c *RaftCluster) String() string {
fmt.Fprintf(b, "Members:[%s] ", strings.Join(ms, " "))
var ids []string
for id := range c.removed {
ids = append(ids, fmt.Sprintf("%s", id))
ids = append(ids, id.String())
}
fmt.Fprintf(b, "RemovedMemberIDs:[%s]}", strings.Join(ids, " "))
return b.String()

View File

@ -128,9 +128,9 @@ func (ts TimeSeries) String() string {
for i := range ts {
row := []string{
fmt.Sprintf("%d", ts[i].Timestamp),
fmt.Sprintf("%s", ts[i].MinLatency),
fmt.Sprintf("%s", ts[i].AvgLatency),
fmt.Sprintf("%s", ts[i].MaxLatency),
ts[i].MinLatency.String(),
ts[i].AvgLatency.String(),
ts[i].MaxLatency.String(),
fmt.Sprintf("%d", ts[i].ThroughPut),
}
rows = append(rows, row)