Skip to content

Commit

Permalink
Always print concurrency to output (#246)
Browse files Browse the repository at this point in the history
This is important information.
  • Loading branch information
klauspost authored Feb 10, 2023
1 parent 884513f commit d018853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ func printAnalysis(ctx *cli.Context, o bench.Operations) {
if details && ops.Concurrency > 0 {
console.Printf("Operation: %v (%d). Ran %v. %vConcurrency: %d.%s\n", typ, ops.N, ran, sz, ops.Concurrency, hostsString)
} else {
console.Printf("Operation: %v\n", typ)
console.Printf("Operation: %v. Concurrency: %v\n", typ, ops.Concurrency)
}
}
if ops.Errors > 0 {
Expand Down

0 comments on commit d018853

Please sign in to comment.