Skip to content

Commit daa0ff7

Browse files
committed
SslChannelProvider.createClientSslHandler takes an extra parameter
Follows-up on eclipse-vertx/vert.x#5829 Signed-off-by: Thomas Segismont <tsegismont@gmail.com>
1 parent 6aa98f8 commit daa0ff7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vertx-mssql-client/src/main/java/io/vertx/mssqlclient/impl/MSSQLSocketConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Future<Void> enableSsl(boolean clientConfigSsl, byte encryptionLevel, MSSQLConne
105105
// 2. Create and set up an SSLHelper and SSLHandler
106106
SSLHelper helper = new SSLHelper(options, options.getApplicationLayerProtocols());
107107
return helper.buildChannelProvider(options.getSslOptions(), context).compose(provider -> {
108-
SslHandler sslHandler = provider.createClientSslHandler(socket.remoteAddress(), null, false);
108+
SslHandler sslHandler = provider.createClientSslHandler(socket.remoteAddress(), null, false, false);
109109

110110
// 3. TdsSslHandshakeCodec manages SSL payload encapsulated in TDS packets
111111
TdsSslHandshakeCodec tdsSslHandshakeCodec = new TdsSslHandshakeCodec();

0 commit comments

Comments
 (0)