diff options
author | Lina George <lg941u@att.com> | 2017-11-09 12:40:56 -0500 |
---|---|---|
committer | Skip Wonnell <skip@att.com> | 2017-11-20 18:32:40 +0000 |
commit | 52d9122c0e36a2b7488eff2d8eaa8f9edaf84338 (patch) | |
tree | 450ec84b8f923f07e3b59267ba24b5da72fc5d52 /appc-provider/appc-provider-bundle/src/main | |
parent | 6536799456cd99ee80d6a7ce0621fb8539df7a81 (diff) |
Fixed null payload issue for Stop Application
Issue-Id: APPC-316
Change-Id: I572f1c62f340a26de1900ee5367b0d913376ee16
Signed-off-by: Lina George <lg941u@att.com>
Diffstat (limited to 'appc-provider/appc-provider-bundle/src/main')
-rw-r--r-- | appc-provider/appc-provider-bundle/src/main/java/org/openecomp/appc/provider/AppcProviderLcm.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appc-provider/appc-provider-bundle/src/main/java/org/openecomp/appc/provider/AppcProviderLcm.java b/appc-provider/appc-provider-bundle/src/main/java/org/openecomp/appc/provider/AppcProviderLcm.java index b13a74201..7d321989f 100644 --- a/appc-provider/appc-provider-bundle/src/main/java/org/openecomp/appc/provider/AppcProviderLcm.java +++ b/appc-provider/appc-provider-bundle/src/main/java/org/openecomp/appc/provider/AppcProviderLcm.java @@ -1152,7 +1152,7 @@ public class AppcProviderLcm implements AutoCloseable, AppcProviderLcmService { Status status = ValidationService.getInstance().validateInput(input.getCommonHeader(), input.getAction(), action); if(null == status) { try { - RequestHandlerInput request = new RequestInputBuilder().requestContext().commonHeader(input.getCommonHeader()).actionIdentifiers(input.getActionIdentifiers()).action(action).rpcName(rpcName).build(); + RequestHandlerInput request = new RequestInputBuilder().requestContext().commonHeader(input.getCommonHeader()).actionIdentifiers(input.getActionIdentifiers()).payload(input.getPayload()).action(action).rpcName(rpcName).build(); status = buildStatusWithDispatcherOutput(executeRequest(request)); logger.info(String.format("Execute of '%s' finished with status %s. Reason: %s", input.getActionIdentifiers(), status.getCode(), status.getMessage())); } catch (ParseException e) { |