diff options
author | Smokowski, Steve (ss835w) <ss835w@us.att.com> | 2018-12-05 14:56:24 -0500 |
---|---|---|
committer | Smokowski, Steve (ss835w) <ss835w@us.att.com> | 2018-12-05 14:56:24 -0500 |
commit | 9363fc6e032aed17d9e96b2aaea864ecf21824cf (patch) | |
tree | dae5371502b37e2e3e82f8c4e4f7659a087fd0d5 /mso-api-handlers/mso-api-handler-infra/src | |
parent | 35726250e078b57ebe6ea4e53b4b8ccd56573e50 (diff) |
Alacarte Recreate Update
Updated aLaCarte logic for recreate actions
Change-Id: I8f3cb8f53bbf9b0f77416ce09bba8313f5f58093
Issue-ID: SO-128
Signed-off-by: Smokowski, Steve (ss835w) <ss835w@us.att.com>
Diffstat (limited to 'mso-api-handlers/mso-api-handler-infra/src')
-rw-r--r-- | mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ServiceInstances.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/ServiceInstances.java b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ServiceInstances.java index 0cd5d8dcb7..79d2a867e8 100644 --- a/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ServiceInstances.java +++ b/mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/ServiceInstances.java @@ -820,7 +820,7 @@ public class ServiceInstances { .errorInfo(errorLoggerInfo).build(); } - if(!requestScope.equalsIgnoreCase(ModelType.service.name())){ + if(!requestScope.equalsIgnoreCase(ModelType.service.name()) && action != Action.recreateInstance){ aLaCarte = true; }else if(aLaCarte == null){ aLaCarte = false; |