Skip to content

Commit 859a56e

Browse files
committed
Update to v1.2
1 parent 536c346 commit 859a56e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agent_api/src/main/java/dev/aikido/agent_api/background/cloud/SSLContextHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public static SSLContext createDefaultSSLContext() throws Exception {
1212
trustManagerFactory.init((KeyStore) null); // Use the default trust store
1313

1414
// Create an SSLContext with the default TrustManager
15-
SSLContext sslContext = SSLContext.getInstance("TLS");
15+
SSLContext sslContext = SSLContext.getInstance("TLSv1.2");
1616
sslContext.init(null, trustManagerFactory.getTrustManagers(), null);
1717

1818
return sslContext;

0 commit comments

Comments
 (0)