Merge "sonar critical for Exception Handling"
authorvarun gudisena <vg411h@att.com>
Wed, 7 Feb 2018 16:40:23 +0000 (16:40 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 7 Feb 2018 16:40:23 +0000 (16:40 +0000)
1  2 
src/main/java/com/att/nsa/dmaapMMAgent/MirrorMakerAgent.java

@@@ -174,7 -174,7 +174,7 @@@ public class MirrorMakerAgent 
                                try {
                                        input.close();
                                } catch (IOException e) {
 -                                      e.printStackTrace();
 +                                      logger.error("Exception occurred is " +e);
                                }
                        }
                        if (out != null) {
                                        try {
                                                Thread.sleep(1000);
                                        } catch (InterruptedException e) {
+                                                Thread.currentThread().interrupt();
                                        }
                                        mirrorMakers.getListMirrorMaker().set(i, mm);
                                } else {
  
                        }
                } catch (Exception e) {
 -                      e.printStackTrace();
 +                      logger.error("Exception is : " +e);
                }
  
        }