Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
Polishing #284
Browse files Browse the repository at this point in the history
Use newer TLS version to avoid disabled protocol errors.
  • Loading branch information
mp911de committed Jan 21, 2022
1 parent 96a2941 commit 779ddf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static void setupClass() throws Exception {

final SslContext sslContext = SslContextBuilder.forServer(kmf).build();

GelfTCPSSLSenderIntegrationTests.sslContext = SSLContext.getInstance("TLSv1");
GelfTCPSSLSenderIntegrationTests.sslContext = SSLContext.getInstance("TLSv1.3");
GelfTCPSSLSenderIntegrationTests.sslContext.init(new KeyManager[0], tmf.getTrustManagers(), null);

server.run(new ChannelInitializer<Channel>() {
Expand Down

0 comments on commit 779ddf0

Please sign in to comment.