modify bug 83/18983/1
authorShiwei Tian <tian.shiwei@zte.com.cn>
Mon, 16 Oct 2017 02:37:55 +0000 (10:37 +0800)
committerShiwei Tian <tian.shiwei@zte.com.cn>
Mon, 16 Oct 2017 02:37:55 +0000 (10:37 +0800)
Issue-ID: HOLMES-71

Change-Id: I96553e6c47ee77f2b3559d8413edd724afa1865b
Signed-off-by: Shiwei Tian <tian.shiwei@zte.com.cn>
dmaap-dsa/src/main/java/org/onap/holmes/dsa/dmaappolling/Subscriber.java

index eea1533..55b7558 100644 (file)
@@ -57,13 +57,18 @@ public class Subscriber {
     private boolean secure;
     private String topic;
     private String url;
-    private String consumerGroup = "g0";
-    private String consumer = "u1";
+    private String consumerGroup = "homlesGrounp1";
+    private String consumer = "homlesGrounp1";
     private String authInfo;
     private String authExpDate;
 
     public List<VesAlarm> subscribe() throws CorrelationException {
-        List<String> response = getDMaaPData();
+        List<String> response;
+        try {
+            response = getDMaaPData();
+        } catch (Exception e) {
+            throw new CorrelationException("Failed to connect to DMapp.", e);
+        }
         try {
             return extractVesAlarm(response);
         } catch (Exception e) {