We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f9743 commit 893e03fCopy full SHA for 893e03f
sqlx-core/src/postgres/connection/sasl.rs
@@ -66,8 +66,11 @@ pub(crate) async fn authenticate(
66
let client_nonce = gen_nonce();
67
68
// client-first-message-bare = [reserved-mext ","] username "," nonce ["," extensions]
69
- let client_first_message_bare =
70
- format!("{username},{client_nonce}", username = username, client_nonce = client_nonce);
+ let client_first_message_bare = format!(
+ "{username},{client_nonce}",
71
+ username = username,
72
+ client_nonce = client_nonce
73
+ );
74
75
let client_first_message = format!(
76
"{gs2_header}{client_first_message_bare}",
0 commit comments