Skip to content

Commit

Permalink
Pass the correct client tls config to clients (#141)
Browse files Browse the repository at this point in the history
Fixes #138
  • Loading branch information
nitisht authored Oct 19, 2020
1 parent 4475aa4 commit 0d0b957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/benchserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ func flagToJSON(ctx *cli.Context, flag cli.Flag) (string, error) {
}
case cli.BoolFlag:
if ctx.IsSet(flag.GetName()) {
return "true", nil
return fmt.Sprint(ctx.Bool(flag.GetName())), nil
}
case cli.Int64Flag:
if ctx.IsSet(flag.GetName()) {
Expand Down

0 comments on commit 0d0b957

Please sign in to comment.