Skip to content

Commit 3080c93

Browse files
authored
misc: make passwords longer (#1649)
1 parent 9614da4 commit 3080c93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

provisioner/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ impl Provisioner for ShuttleProvisioner {
573573
fn generate_password() -> String {
574574
rand::thread_rng()
575575
.sample_iter(&rand::distributions::Alphanumeric)
576-
.take(12)
576+
.take(32)
577577
.map(char::from)
578578
.collect()
579579
}

0 commit comments

Comments
 (0)