Skip to content

Commit

Permalink
Bump golangci-lint action version
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sevilla <[email protected]>
  • Loading branch information
rsevilla87 committed May 5, 2022
1 parent 1ae0e73 commit 63224ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Run golangci-lint
# You may pin to the exact commit or the version.
# uses: golangci/golangci-lint-action@04eca2038305127fb1e6683425b6864cd5612f2d
uses: golangci/golangci-lint-action@v2
uses: golangci/golangci-lint-action@v3
with:
# version of golangci-lint to use in form of v1.2.3
version: v1.32
Expand Down
2 changes: 1 addition & 1 deletion pkg/measurements/pod_latency.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ func (p *podLatency) stop() (int, error) {
}
for _, q := range p.latencyQuantiles {
pq := q.(metrics.LatencyQuantiles)
log.Infof("%s 50th: %v 99th: %v max: %v avg: %v ", pq.QuantileName, pq.P50, pq.P99, pq.Max, pq.Avg)
log.Infof("%s: %s 50th: %v 99th: %v max: %v avg: %v", factory.jobConfig.Name, pq.QuantileName, pq.P50, pq.P99, pq.Max, pq.Avg)
}
return rc, nil
}
Expand Down

0 comments on commit 63224ca

Please sign in to comment.