aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java
diff options
context:
space:
mode:
authormalar <malarvizhi.44@wipro.com>2021-10-14 12:58:18 +0000
committerMalarvizhi Paramasivam <malarvizhi.44@wipro.com>2021-10-25 12:22:35 +0000
commitaf3748999932f7c2aea29df5d563118d7b1f17f4 (patch)
tree29ee8143f8aa02d0e0dc3a3e275facdbc0e993fa /src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java
parent29f3dc9cabe5b6a6b2cfddc8a7a24d7a3ff98b4f (diff)
Fix bug in filtering new FM notificationistanbul
Issue-ID: DCAEGEN2-2943 Signed-off-by: Malarvizhi Paramasivam <malarvizhi.44@wipro.com> Change-Id: Ibd0a06695bd14267667f57fe57c3e36b41fb2e12 (cherry picked from commit 9f1c4f29af6640cccaad8fec941fa58fcd833dcd)
Diffstat (limited to 'src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java')
-rw-r--r--src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java b/src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java
index 9f889da..8b97359 100644
--- a/src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java
+++ b/src/main/java/org/onap/dcaegen2/services/sonhms/FaultNotificationComponent.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* son-handler
* ================================================================================
- * Copyright (C) 2019-2020 Wipro Limited.
+ * Copyright (C) 2019-2021 Wipro Limited.
* ==============================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,6 +47,7 @@ public class FaultNotificationComponent {
.getBean(FaultNotificationsRepository.class);
String notificationString = faultNotificationsRepository.getFaultNotificationFromQueue();
log.info("get fault notifications method");
+ log.info("Notification String " + notificationString);
if (notificationString == null) {
return Either.right(404);
}