diff options
author | Elena Kuleshov <evn@att.com> | 2019-05-09 12:27:30 -0400 |
---|---|---|
committer | Marcus Williams <marcus.williams@intel.com> | 2019-05-15 13:33:23 +0000 |
commit | a385c0cc6a0ed25cc63fab1368fc686d79f06bca (patch) | |
tree | 0da20ab3f7bb79a783d1ada3003a1c5ed9775fe9 /mso-api-handlers/mso-api-handler-infra/src/main | |
parent | b6571203e371d28229ee1c0c6fda2bfcac59a5b5 (diff) |
Use workflow's name for invocation
Use workflow's name for invocation
Change-Id: Ie527788f029bdccc91f7f406df0a478e55375c01
Issue-ID: SO-1876
Signed-off-by: Kuleshov, Elena <evn@att.com>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src/main')
-rw-r--r-- | mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/InstanceManagement.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/InstanceManagement.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/InstanceManagement.java index c491444f39..dd6050bf60 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/InstanceManagement.java +++ b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/InstanceManagement.java @@ -255,7 +255,7 @@ public class InstanceManagement { if (workflow == null) { return null; } else { - String workflowName = workflow.getArtifactName(); + String workflowName = workflow.getName(); recipeUri = "/mso/async/services/" + workflowName; } return new RecipeLookupResult(recipeUri, 180); |