Replaced hardcoded value with constant defined 13/82413/2
authorJegadeesh Babu <jegabab1@in.ibm.com>
Fri, 15 Mar 2019 11:15:40 +0000 (16:45 +0530)
committerTakamune Cho <takamune.cho@att.com>
Mon, 18 Mar 2019 17:04:20 +0000 (17:04 +0000)
Sonar fix

Issue-ID: APPC-1539
Change-Id: Id3891e50bdf89799d1310b37c80ca920d7bdc02c
Signed-off-by: Jegadeesh Babu <jegabab1@in.ibm.com>
appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/impl/ChefAdapterImpl.java

index 8d754e7..1a21c75 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * 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.
  * You may obtain a copy of the License at
@@ -578,8 +580,8 @@ public class ChefAdapterImpl implements ChefAdapter {
         if ("complete".equals(status)) {
             if (hasFailedNode(message)) {
                 String finalMessage = "PushJob Status Complete but check failed nodes in the message :" + message;
-                svcLogic.setAttribute("chefServerResult.code", APPC_ERRORCODE.toString());
-                svcLogic.setAttribute("chefServerResult.message", finalMessage);
+                svcLogic.setAttribute(CHEF_SERVER_RESULT_CODE_STR, APPC_ERRORCODE.toString());
+                svcLogic.setAttribute(CHEF_SERVER_RESULT_MSG_STR, finalMessage);
             } else {
                 svcLogic.setAttribute(CHEF_SERVER_RESULT_CODE_STR, STATUS_OK.toString());
                 svcLogic.setAttribute(CHEF_SERVER_RESULT_MSG_STR, message);