Trying to fix the healthcheck problem 41/127741/1
authorGuangrongFu <fu.guangrong@zte.com.cn>
Mon, 14 Mar 2022 08:49:58 +0000 (16:49 +0800)
committerGuangrongFu <fu.guangrong@zte.com.cn>
Mon, 14 Mar 2022 08:49:58 +0000 (16:49 +0800)
Issue-ID: HOLMES-512
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Change-Id: Ib85361a44d8ce85949a46c9fa202bad3d4bc0453

rulemgt-standalone/src/main/assembly/conf/rulemgt.yml
rulemgt/src/main/java/org/onap/holmes/rulemgt/Initializer.java

index 812d337..bc469c6 100644 (file)
@@ -24,7 +24,7 @@ server:
 logging:
 
   # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
-  level: ALL
+  level: INFO
 
   # Logger-specific levels.
   loggers:
index 3995e4c..799f455 100644 (file)
@@ -33,6 +33,7 @@ import java.util.Set;
 import java.util.concurrent.Executors;
 import java.util.concurrent.TimeUnit;
 
+import static org.onap.holmes.common.config.MicroServiceConfig.POD_IP;
 import static org.onap.holmes.common.utils.CommonUtils.getEnv;
 import static org.onap.holmes.common.utils.CommonUtils.isIpAddress;
 
@@ -92,7 +93,7 @@ public class Initializer {
         msinfo.setEnable_ssl(CommonUtils.isHttpsEnabled());
         Set<Node> nodes = new HashSet<>();
         Node node = new Node();
-        node.setIp(isIpAddress(serviceIpAndPort[0]) ? serviceIpAndPort[0] : getEnv("HOLMES_RULE_MGMT_SERVICE_HOST"));
+        node.setIp(isIpAddress(serviceIpAndPort[0]) ? serviceIpAndPort[0] : getEnv(POD_IP));
         node.setPort("9101");
         /* Following codes will cause an unregistration from MSB (due to MSB malfunction), comment them for now
         String msbAddrTemplate = (CommonUtils.isHttpsEnabled() ? "https" : "http")