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 02ee7ab commit 77642d9Copy full SHA for 77642d9
r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/InitFlow.java
@@ -728,7 +728,8 @@ private HandshakeResponse createHandshakeResponse(Capability capability) {
728
byte[] authorization = authProvider.authentication(password, salt, client.getContext().getClientCollation());
729
730
if (authProvider.isSslNecessary() && !sslCompleted && sslMode.equals(SslMode.DISABLED)) {
731
- authorization = MySqlAuthProvider.rsaEncryption(authorization, serverRSAPublicKeyFile, client.getContext().getServerVersion());
+ authorization = MySqlAuthProvider.rsaEncryption(authorization, serverRSAPublicKeyFile,
732
+ client.getContext().getServerVersion());
733
}
734
735
String authType = authProvider.getType();
0 commit comments