Skip to content

Commit

Permalink
fix: flag prefixes to insecure_
Browse files Browse the repository at this point in the history
  • Loading branch information
remingtonc committed Aug 14, 2019
1 parent 42d260d commit d67732b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/gnmi_cli/gnmi_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ var (
setFlag = flag.Bool("set", false, `When set, CLI will perform a Set request. Usage: gnmi_cli -set -proto <gnmi.SetRequest> -address <address> [other flags ...]`)

withUserPass = flag.Bool("with_user_pass", false, "When set, CLI will prompt for username/password to use when connecting to a target.")
insecureUsername = flag.String("cli_username", "", "Username passed via argument.")
insecurePassword = flag.String("cli_password", "", "Password passed via argument for Username.")
insecureUsername = flag.String("insecure_username", "", "Username passed via argument.")
insecurePassword = flag.String("insecure_password", "", "Password passed via argument for Username.")
credentialsFile = flag.String("credentials_file", "", `File of format { "Username": "demo", "Password": "demo" }`)

// Certificate files.
Expand Down

0 comments on commit d67732b

Please sign in to comment.