From fd00a6849e072eb429e7ed7181588389f39bbdff Mon Sep 17 00:00:00 2001 From: HuabingZhao Date: Wed, 21 Mar 2018 09:14:25 +0800 Subject: Support healthy check for registered services Issue-ID: MSB-180 Change-Id: I352dfe32d3fbc1c7736ffbbb7b72718e6bbb5e01 Signed-off-by: HuabingZhao --- example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java') diff --git a/example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java b/example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java index 7e74ed2..002a358 100644 --- a/example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java +++ b/example/src/main/java/org/onap/msb/sdk/example/server/ExampleApp.java @@ -40,8 +40,8 @@ public class ExampleApp extends Application { public void run(Config configuration, Environment environment) throws Exception { // For real use case, MSB discovery IP and Port should come from configuration file instead // of hard code here - String msb_discovery_ip = "127.0.0.1"; - int msb_discovery_port = 10081; + String msb_discovery_ip = "10.96.33.44"; + int msb_discovery_port = 30081; environment.jersey().register(new AnimalResource()); -- cgit 1.2.3-korg