Skip to content

Commit

Permalink
misc: make passwords longer (#1649)
Browse files Browse the repository at this point in the history
  • Loading branch information
chesedo committed Mar 1, 2024
1 parent 9614da4 commit 3080c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provisioner/src/lib.rs
Expand Up @@ -573,7 +573,7 @@ impl Provisioner for ShuttleProvisioner {
fn generate_password() -> String {
rand::thread_rng()
.sample_iter(&rand::distributions::Alphanumeric)
.take(12)
.take(32)
.map(char::from)
.collect()
}
Expand Down

0 comments on commit 3080c93

Please sign in to comment.