Skip to content

Commit

Permalink
fix: nighthawk arg (#14)
Browse files Browse the repository at this point in the history
Signed-off-by: Kush Trivedi <[email protected]>
  • Loading branch information
kushthedude authored Sep 18, 2020
1 parent 4143a4d commit c97fe5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apinighthawk/nighthawk.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func NighthawkRun(config *NighthawkConfig) ([]byte, error) {
qps := strconv.FormatFloat(config.QPS, 'f', -1, 64)
c := strconv.Itoa(config.Thread)

args := []string{"--rps " + qps, "--concurrency " + c, "--duration " + duration, rURL.String(), "--output-format fortio"}
args := []string{"--rps " + qps, "--concurrency " + c, "--duration " + duration, rURL.String(), "--output-format experimental_fortio_pedantic"}

log.Info("Received arguments for run", args)

Expand Down

0 comments on commit c97fe5f

Please sign in to comment.