fix password variable shadowing (#5405)

release/v1.7
Lanre Adelowo 5 years ago committed by Lauris BH
parent 5e022a98e6
commit ce9a5173fe

@ -301,7 +301,8 @@ func runCreateUser(c *cli.Context) error {
if c.IsSet("password") {
password = c.String("password")
} else if c.IsSet("random-password") {
password, err := generate.GetRandomString(c.Int("random-password-length"))
var err error
password, err = generate.GetRandomString(c.Int("random-password-length"))
if err != nil {
return err
}

Loading…
Cancel
Save