Fixed Holmes Service Reg Problem 77/70777/1
authorGuangrongFu <fu.guangrong@zte.com.cn>
Fri, 19 Oct 2018 00:55:29 +0000 (08:55 +0800)
committerGuangrongFu <fu.guangrong@zte.com.cn>
Fri, 19 Oct 2018 00:55:29 +0000 (08:55 +0800)
Change-Id: I20c3ff63a8744d3aa40b2f67450913bf119afc8b
Issue-ID: HOLMES-175
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
pom.xml
rulemgt-frontend/pom.xml
rulemgt-standalone/pom.xml
rulemgt/pom.xml
rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleActiveApp.java

diff --git a/pom.xml b/pom.xml
index 67713d9..43cb1a5 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 \r
     <groupId>org.onap.holmes.rule-management</groupId>\r
     <artifactId>holmes-rulemgt-parent</artifactId>\r
-    <version>1.2.0</version>\r
+    <version>1.2.1-SNAPSHOT</version>\r
     <packaging>pom</packaging>\r
     <name>holmes-rule-management</name>\r
     <modules>\r
@@ -86,7 +86,7 @@
             <dependency>\r
                 <groupId>org.onap.holmes.common</groupId>\r
                 <artifactId>holmes-actions</artifactId>\r
-                <version>1.2.1</version>\r
+                <version>1.2.2</version>\r
             </dependency>\r
             <dependency>\r
                 <groupId>io.dropwizard</groupId>\r
index 77a9117..c330a3d 100644 (file)
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.onap.holmes.rule-management</groupId>
     <artifactId>holmes-rulemgt-parent</artifactId>
-    <version>1.2.0</version>
+    <version>1.2.1-SNAPSHOT</version>
   </parent>
 
   <artifactId>holmes-rulemgt-frontend</artifactId>
index 98e224b..8cc3471 100644 (file)
@@ -22,7 +22,7 @@
     <parent>
         <groupId>org.onap.holmes.rule-management</groupId>
         <artifactId>holmes-rulemgt-parent</artifactId>
-        <version>1.2.0</version>
+        <version>1.2.1-SNAPSHOT</version>
     </parent>
 
     <artifactId>holmes-rulemgt-standalone</artifactId>
index 7b60f1e..91d3088 100644 (file)
@@ -20,7 +20,7 @@
     <parent>
         <groupId>org.onap.holmes.rule-management</groupId>
         <artifactId>holmes-rulemgt-parent</artifactId>
-        <version>1.2.0</version>
+        <version>1.2.1-SNAPSHOT</version>
     </parent>
 
     <artifactId>holmes-rulemgt</artifactId>
index c87be76..544d338 100644 (file)
@@ -88,7 +88,7 @@ public class RuleActiveApp extends IOCApplication<RuleAppConfig> {
         node.setIp(serviceAddrInfo[0]);
         node.setPort(serviceAddrInfo[1]);
         node.setCheckType("HTTP");
-        node.setCheckUrl(String.format("https://%s:%s/api/holmes-rule-mgmt/v1/healthcheck", serviceAddrInfo[0], serviceAddrInfo[1]));
+        node.setCheckUrl(String.format("https://%s:%s/api/holmes-rule-mgmt/v1/healthcheck", serviceAddrInfo[0], "9101"));
         node.setCheckTimeOut("60s");
         node.setCheckInterval("60s");
         nodes.add(node);