Skip to content

Commit

Permalink
fixes #104
Browse files Browse the repository at this point in the history
password is given on storage create success
  • Loading branch information
MarcHarriss committed Jan 12, 2021
1 parent 0991d2e commit f782791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ func init() {
}

func generatePassword() string {
res, err := password.Generate(12, 10, 10, false, false)
res, err := password.Generate(12, 6, 2, false, false)
if err != nil {
log.Fatalf("Failed generating password: %s\n", err)
}
Expand Down

0 comments on commit f782791

Please sign in to comment.