This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch ssl_between_nodes in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 1f9c5f77fa010a4a238f07c5186b1f952c8b0bed Author: HTHou <[email protected]> AuthorDate: Thu Jul 17 18:27:31 2025 +0800 recover config --- .../main/java/org/apache/iotdb/commons/conf/CommonConfig.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java index 852e55a65d3..58a8e28fbe5 100644 --- a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java +++ b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java @@ -406,19 +406,19 @@ public class CommonConfig { private volatile Pattern trustedUriPattern = Pattern.compile("file:.*"); /** Enable the thrift Service ssl. */ - private boolean enableSSL = true; + private boolean enableSSL = false; /** ssl key Store Path. */ - private String keyStorePath = "/Users/ht/.keystore"; + private String keyStorePath = ""; /** ssl key Store password. */ - private String keyStorePwd = "123456"; + private String keyStorePwd = ""; /** ssl trust Store Path. */ - private String trustStorePath = "/Users/ht/.truststore"; + private String trustStorePath = ""; /** ssl trust Store password. */ - private String trustStorePwd = "123456"; + private String trustStorePwd = ""; CommonConfig() { // Empty constructor
