From: GuangrongFu Date: Fri, 19 Oct 2018 00:55:29 +0000 (+0800) Subject: Fixed Holmes Service Reg Problem X-Git-Tag: 1.2.2~14^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=holmes%2Frule-management.git;a=commitdiff_plain;h=65a3152a7eb870b0f01c95f0dcc59ee4950b53d3 Fixed Holmes Service Reg Problem Change-Id: I20c3ff63a8744d3aa40b2f67450913bf119afc8b Issue-ID: HOLMES-175 Signed-off-by: GuangrongFu --- diff --git a/pom.xml b/pom.xml index 67713d9..43cb1a5 100644 --- a/pom.xml +++ b/pom.xml @@ -24,7 +24,7 @@ org.onap.holmes.rule-management holmes-rulemgt-parent - 1.2.0 + 1.2.1-SNAPSHOT pom holmes-rule-management @@ -86,7 +86,7 @@ org.onap.holmes.common holmes-actions - 1.2.1 + 1.2.2 io.dropwizard diff --git a/rulemgt-frontend/pom.xml b/rulemgt-frontend/pom.xml index 77a9117..c330a3d 100644 --- a/rulemgt-frontend/pom.xml +++ b/rulemgt-frontend/pom.xml @@ -23,7 +23,7 @@ org.onap.holmes.rule-management holmes-rulemgt-parent - 1.2.0 + 1.2.1-SNAPSHOT holmes-rulemgt-frontend diff --git a/rulemgt-standalone/pom.xml b/rulemgt-standalone/pom.xml index 98e224b..8cc3471 100644 --- a/rulemgt-standalone/pom.xml +++ b/rulemgt-standalone/pom.xml @@ -22,7 +22,7 @@ org.onap.holmes.rule-management holmes-rulemgt-parent - 1.2.0 + 1.2.1-SNAPSHOT holmes-rulemgt-standalone diff --git a/rulemgt/pom.xml b/rulemgt/pom.xml index 7b60f1e..91d3088 100644 --- a/rulemgt/pom.xml +++ b/rulemgt/pom.xml @@ -20,7 +20,7 @@ org.onap.holmes.rule-management holmes-rulemgt-parent - 1.2.0 + 1.2.1-SNAPSHOT holmes-rulemgt diff --git a/rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleActiveApp.java b/rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleActiveApp.java index c87be76..544d338 100644 --- a/rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleActiveApp.java +++ b/rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleActiveApp.java @@ -88,7 +88,7 @@ public class RuleActiveApp extends IOCApplication { 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);