Code changes and added debug statement for cassandra issue. 53/117253/1
authorKishore Reddy Dwaram <kishore.reddy.dwaram@att.com>
Fri, 29 Jan 2021 19:03:30 +0000 (14:03 -0500)
committerKishore Reddy Dwaram <kishore.reddy.dwaram@att.com>
Fri, 29 Jan 2021 19:03:39 +0000 (14:03 -0500)
Issue-ID: PORTAL-1058
Signed-off-by: Kishore Reddy Dwaram <kishore.reddy.dwaram@att.com>
Change-Id: I3fee89ade3f12754bc8b668094d45948183f9bdc

ecomp-portal-BE-common/src/main/java/org/onap/portalapp/music/service/MusicService.java

index 119ad2d..e6d9c32 100644 (file)
@@ -80,16 +80,6 @@ public class MusicService {
        static RestTemplate template = new RestTemplate();
        private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MusicService.class);
        
-       static {        
-       try {
-                       //MusicCore.getDSHandle();
-                       init();
-                       // Since mDstoreHandle is already initialized in init mthod, calling this method again will have no impact on mDstoreHandle.
-                       MusicCore.getDSHandle();
-               } catch (MusicServiceException e) {
-                       logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(), e);
-               }
-    }
     
     public static void init() {
        try {
@@ -106,10 +96,16 @@ public class MusicService {
                 org.onap.music.main.MusicUtil.loadProperties();
                 // decrypt encrypted password using the key we loaded before.
                 String decryptedPassword = CipherUtil.decryptPKC(org.onap.music.main.MusicUtil.getCassPwd(), prop.getProperty("cipher.enc.key"));
+                logger.debug(EELFLoggerDelegate.debugLogger, "Cassandra Password Decrypted " + decryptedPassword);
+                logger.debug(EELFLoggerDelegate.debugLogger, "Setting Decrypted password ");
                 // set decrypted password 
                 org.onap.music.main.MusicUtil.setCassPwd(decryptedPassword);
+                logger.debug(EELFLoggerDelegate.debugLogger, "Creating cassandra connections pool and sessions by calling MusicDataStore and passing the cassandra hostname ");
                 // Here we are creating cassandra connections pool and sessions by calling MusicDataStore and passing the cassandrra hostname to that. 
                 MusicCore.mDstoreHandle = new MusicDataStore(org.onap.music.main.MusicUtil.getMyCassaHost());
+                               // Since mDstoreHandle is already initialized in init mthod, calling this method again will have no impact on mDstoreHandle.
+                logger.debug(EELFLoggerDelegate.debugLogger, "Calling MusicCore getDSHandle() method ");
+                MusicCore.getDSHandle();
             } catch (Exception e) {
                logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(), e);
             }