Skip to content

Commit

Permalink
fix: mandatory -n
Browse files Browse the repository at this point in the history
  • Loading branch information
vsukhin committed Mar 11, 2024
1 parent f74d4b2 commit 6a2b299
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contrib/executor/jmeterd/pkg/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ func removeDuplicatedArgs(args []string) []string {
}

func mergeDuplicatedArgs(args []string) []string {
// -n is mandatory regardless of args mode
args = append(args, "-n")
allowed := map[string]int{
"-e": 0,
"-n": 0,
Expand Down

0 comments on commit 6a2b299

Please sign in to comment.