summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshentao <shentao@chinamobile.com>2017-11-13 15:49:51 +0800
committershentao <shentao@chinamobile.com>2017-11-13 15:49:57 +0800
commitdf945bec7e6887fe5636ea8966848df3a211f690 (patch)
tree4feec665545540e8a52dad0b5d7eac39b7eac8b5
parentb08cc1d19a88e809aca5a3f0a3320dfbf1fcaab1 (diff)
Change dmaap IP config
Change-Id: Icff2fbd10e239c2a669605feec1bdb53f2de80fb Issue-Id: USECASEUI-54 Signed-off-by: shentao <shentao@chinamobile.com>
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/util/DmaapSubscriber.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/util/DmaapSubscriber.java b/server/src/main/java/org/onap/usecaseui/server/util/DmaapSubscriber.java
index 931b0e57..199bc7e4 100644
--- a/server/src/main/java/org/onap/usecaseui/server/util/DmaapSubscriber.java
+++ b/server/src/main/java/org/onap/usecaseui/server/util/DmaapSubscriber.java
@@ -131,7 +131,7 @@ public class DmaapSubscriber implements Runnable {
Properties p = new Properties();
try {
p.load(inputStream);
- this.url = p.getProperty("http://") + System.getenv("MS_ADDR");
+ this.url = p.getProperty("dmaap.url") + System.getenv("MR_ADDR");
this.alarmTopic = p.getProperty("dmaap.alarmTopic");
this.performanceTopic = p.getProperty("dmaap.performanceTopic");
this.consumerGroup = p.getProperty("dmaap.consumerGroup");