Skip to content

Commit

Permalink
Reduce the batchPerHost default value from 20 to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
na-- committed Dec 10, 2019
1 parent bc075fb commit 3de91a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func optionFlagSet() *pflag.FlagSet {
flags.BoolP("paused", "p", false, "start the test in a paused state")
flags.Int64("max-redirects", 10, "follow at most n redirects")
flags.Int64("batch", 20, "max parallel batch reqs")
flags.Int64("batch-per-host", 20, "max parallel batch reqs per host")
flags.Int64("batch-per-host", 6, "max parallel batch reqs per host")
flags.Int64("rps", 0, "limit requests per second")
flags.String("user-agent", fmt.Sprintf("k6/%s (https://k6.io/)", consts.Version), "user agent for http requests")
flags.String("http-debug", "", "log all HTTP requests and responses. Excludes body by default. To include body use '--http-debug=full'")
Expand Down

0 comments on commit 3de91a1

Please sign in to comment.