diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-10-19 08:55:29 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-10-19 08:55:29 +0800 |
commit | 65a3152a7eb870b0f01c95f0dcc59ee4950b53d3 (patch) | |
tree | acd342669512849354dd8af93528dfa8e1b11238 /rulemgt/src | |
parent | 27704a8acb2abbc15f3b507ca73ab55bb159af79 (diff) |
Fixed Holmes Service Reg Problem
Change-Id: I20c3ff63a8744d3aa40b2f67450913bf119afc8b
Issue-ID: HOLMES-175
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
Diffstat (limited to 'rulemgt/src')
-rw-r--r-- | rulemgt/src/main/java/org/onap/holmes/rulemgt/RuleActiveApp.java | 2 |
1 files changed, 1 insertions, 1 deletions
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<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); |