From 86ef26727cf82971f20e9f01f15810232e8c43fc Mon Sep 17 00:00:00 2001 From: yukon Date: Sat, 9 Dec 2017 21:15:47 +0800 Subject: [PATCH] Use tls test mode by default --- .../org/apache/rocketmq/remoting/netty/TlsSystemConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remoting/src/main/java/org/apache/rocketmq/remoting/netty/TlsSystemConfig.java b/remoting/src/main/java/org/apache/rocketmq/remoting/netty/TlsSystemConfig.java index f6811889..403bd6c9 100644 --- a/remoting/src/main/java/org/apache/rocketmq/remoting/netty/TlsSystemConfig.java +++ b/remoting/src/main/java/org/apache/rocketmq/remoting/netty/TlsSystemConfig.java @@ -48,7 +48,7 @@ public class TlsSystemConfig { /** * To determine whether use test mode when initialize TLS context */ - public static boolean tlsTestModeEnable = Boolean.parseBoolean(System.getProperty(TLS_TEST_MODE_ENABLE, "false")); + public static boolean tlsTestModeEnable = Boolean.parseBoolean(System.getProperty(TLS_TEST_MODE_ENABLE, "true")); /** * Indicates the state of the {@link javax.net.ssl.SSLEngine} with respect to client authentication. -- GitLab