File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl HashedPassword {
49
49
} else if let Some ( raw_password) = & password_config. password {
50
50
log:: debug!( "Using password for user {name}..." ) ;
51
51
log:: warn!(
52
- "User {name} uses a plaintext password. This is inscure and should only be used for testing purposes."
52
+ "User {name} uses a plaintext password. This is insecure and should only be used for testing purposes."
53
53
) ;
54
54
Some ( Self :: Override (
55
55
hash_password ( raw_password, current_password) . context ( "Failed to hash password" ) ?,
@@ -60,7 +60,7 @@ impl HashedPassword {
60
60
} else if let Some ( raw_password) = & password_config. initial_password {
61
61
log:: debug!( "Using initialPassword for user {name}..." ) ;
62
62
log:: warn!(
63
- "User {name} uses a plaintext password. This is inscure and should only be used for testing purposes."
63
+ "User {name} uses a plaintext password. This is insecure and should only be used for testing purposes."
64
64
) ;
65
65
Some ( Self :: Initial (
66
66
hash_password ( raw_password, current_password) . context ( "Failed to hash password" ) ?,
You can’t perform that action at this time.
0 commit comments