Skip to content

Commit

Permalink
feat!: Remove metrics.rate field.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec committed Sep 15, 2021
1 parent 2192cd5 commit 4168dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/step.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func formatSourceStatuses(statuses SourceStatuses) string {
}
for _, s := range statuses {
for _, m := range s.Metrics {
sourceText = append(sourceText, p.Sprintf("%s%s %s%d", sym(symbol.Pending, s.GetPending()), sym(symbol.Error, m.Errors), symbol.Total, m.Total))
sourceText = append(sourceText, p.Sprintf("%s%s %s%d", sym(symbol.Pending, s.GetPending()), sym(symbol.Error, m.Errors), symbol.Total, m.Total))
}
}
return strings.Join(sourceText, ",")
Expand Down

0 comments on commit 4168dd0

Please sign in to comment.