This is an automated email from the ASF dual-hosted git repository.
chaow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 93a0a2a Comment out pre-start customizations debugging message
new 660a109 Merge pull request #2570 from
neuyilan/apache_master_0125_comment_out_debug_pre_start_codes
93a0a2a is described below
commit 93a0a2a0181a4c74ea98f9c61654b3f70e012163
Author: HouliangQi <[email protected]>
AuthorDate: Mon Jan 25 14:38:44 2021 +0800
Comment out pre-start customizations debugging message
---
cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
b/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
index 39994bb..1cb7a6f 100644
--- a/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
+++ b/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
@@ -92,7 +92,7 @@ public class ClusterMain {
try {
metaServer = new MetaClusterServer();
startServerCheck();
- preStartCustomize();
+ // preStartCustomize();
metaServer.start();
metaServer.buildCluster();
} catch (TTransportException | StartupException | QueryProcessException |
@@ -103,7 +103,7 @@ public class ClusterMain {
} else if (MODE_ADD.equals(mode)) {
try {
metaServer = new MetaClusterServer();
- preStartCustomize();
+ // preStartCustomize();
metaServer.start();
metaServer.joinCluster();
} catch (TTransportException | StartupException | QueryProcessException
| StartUpCheckFailureException | ConfigInconsistentException e) {