feat: update NodeCenterServer

rename NodeCenterServer.parseConf to NodeCenterServer.configServer
This commit is contained in:
Frank.R.Wu 2021-12-23 21:40:54 +08:00
parent eff33648e1
commit 2ee97ee704

View File

@ -64,7 +64,7 @@ public class NodeCenterServer {
Level.OFF);
}
public static void parseConf(CMDConf cmdConf) {
public static void configServer(CMDConf cmdConf) {
LocalLHSProxy.port = cmdConf.doipPort;
LocalLHSProxy.enabled = true;
if (cmdConf.disableDoRepo) {
@ -88,7 +88,6 @@ public class NodeCenterServer {
}
if (cmdConf.debug != null) {
if (!cmdConf.debug.isEmpty()) {
try {
String[] classes = cmdConf.debug.split(",");
for (String clz : classes) {
@ -123,9 +122,9 @@ public class NodeCenterServer {
if (!confFile.exists() && confTemplate.exists()) {
FileUtils.copyFile(confTemplate, confFile);
}
CMDConf cmf = CMDConf.parseConf(CONFIG_PATH).parseArgs(args);
CMDConf cmf = CMDConf.parseFile(CONFIG_PATH).parseArgs(args);
parseConf(cmf);
configServer(cmf);
if (LocalLHSProxy.enabled) {
threadPool = Executors.newSingleThreadExecutor();