From 5fc0b7e27fd0f27d21fc404d1e76b64441bc9510 Mon Sep 17 00:00:00 2001 From: Kush Trivedi <44091822+kushthedude@users.noreply.github.com> Date: Fri, 23 Oct 2020 02:23:04 +0530 Subject: [PATCH] fix: qps issues in nighthawk load-test (#18) Signed-off-by: Kush Trivedi --- apinighthawk/nighthawk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apinighthawk/nighthawk.go b/apinighthawk/nighthawk.go index 9b706b0b..557b24d5 100644 --- a/apinighthawk/nighthawk.go +++ b/apinighthawk/nighthawk.go @@ -42,7 +42,7 @@ func NighthawkRun(config *NighthawkConfig) ([]byte, error) { c := strconv.Itoa(config.Thread) args := []string{"--rps " + qps, - "--concurrency " + c, + "--connections " + c, "--duration " + duration, rURL.String(), "--output-format experimental_fortio_pedantic"}