This is an automated email from the ASF dual-hosted git repository.

dpavlov pushed a commit to branch ignite-2.7.5
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-2.7.5 by this push:
     new 591b108  IGNITE-11860 Temporarily peg SSL version to TLSv1.2. - Fixes 
#6557.
591b108 is described below

commit 591b10816d0649bff74886fcb38145bedf34eeb0
Author: Ilya Kasnacheev <[email protected]>
AuthorDate: Mon Jun 3 17:50:20 2019 +0300

    IGNITE-11860 Temporarily peg SSL version to TLSv1.2. - Fixes #6557.
    
    Signed-off-by: Dmitriy Pavlov <[email protected]>
---
 modules/core/src/main/java/org/apache/ignite/ssl/SslContextFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/ssl/SslContextFactory.java 
b/modules/core/src/main/java/org/apache/ignite/ssl/SslContextFactory.java
index edff5c9..199f9ef 100644
--- a/modules/core/src/main/java/org/apache/ignite/ssl/SslContextFactory.java
+++ b/modules/core/src/main/java/org/apache/ignite/ssl/SslContextFactory.java
@@ -58,7 +58,7 @@ public class SslContextFactory implements Factory<SSLContext> 
{
     public static final String DFLT_STORE_TYPE = "JKS";
 
     /** Default SSL protocol. */
-    public static final String DFLT_SSL_PROTOCOL = "TLS";
+    public static final String DFLT_SSL_PROTOCOL = "TLSv1.2";
 
     /** Default key manager algorithm. */
     public static final String DFLT_KEY_ALGORITHM = "SunX509";

Reply via email to