Handle exception 28/82128/2
authorJegadeesh Babu <jegabab1@in.ibm.com>
Wed, 13 Mar 2019 13:34:49 +0000 (19:04 +0530)
committerJoss Armstrong <joss.armstrong@ericsson.com>
Thu, 14 Mar 2019 11:19:42 +0000 (11:19 +0000)
Sonar fix

Issue-ID: APPC-1535
Change-Id: Ic980f53362a87cc8674252d6a8c4cb0cc50035c3
Signed-off-by: Jegadeesh Babu <jegabab1@in.ibm.com>
appc-adapters/appc-rest-healthcheck-adapter/appc-rest-healthcheck-adapter-bundle/src/main/java/org/onap/appc/adapter/restHealthcheck/impl/RestHealthcheckAdapterImpl.java

index 9188a2e..eaa71c2 100644 (file)
@@ -7,6 +7,7 @@
  * Copyright (C) 2017 Amdocs
  * ================================================================================
  * Modifications Copyright (C) 2019 Ericsson
+ * Modifications Copyright (C) 2019 IBM
  * =============================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -104,6 +105,7 @@ public class RestHealthcheckAdapterImpl implements RestHealthcheckAdapter {
             status = Integer.toString(code.getStatusCode());
         } catch (Exception e) {
             status = "500";
+            logger.error("Error while casting Integer to String", e);
         }
         svcLogic.setStatus(OUTCOME_FAILURE);
         svcLogic.setAttribute("healthcheck.result.code", "200");