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 536c346 commit 859a56eCopy full SHA for 859a56e
agent_api/src/main/java/dev/aikido/agent_api/background/cloud/SSLContextHelper.java
@@ -12,7 +12,7 @@ public static SSLContext createDefaultSSLContext() throws Exception {
12
trustManagerFactory.init((KeyStore) null); // Use the default trust store
13
14
// Create an SSLContext with the default TrustManager
15
- SSLContext sslContext = SSLContext.getInstance("TLS");
+ SSLContext sslContext = SSLContext.getInstance("TLSv1.2");
16
sslContext.init(null, trustManagerFactory.getTrustManagers(), null);
17
18
return sslContext;
0 commit comments