aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorkrishnaa96 <krishna.moorthy6@wipro.com>2020-11-09 19:56:19 +0530
committerkrishnaa96 <krishna.moorthy6@wipro.com>2020-11-10 10:11:31 +0530
commit7ec41c19e5b894fbe06b2020f4fe399b461ce05e (patch)
tree7b736c0a021fea1865421563ab1da55d275cf9b2 /apps
parentb1d2a420c9eef68061fe6706e8444e79dd611fae (diff)
Remove lower case conversion of subnet
- Subnet type is being converted to lower case before sending the request to HAS which creates problems while sending the solution back to SO - Fix typo in the response(slice_profiles) Issue-ID: OPTFRA-870 Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com> Change-Id: I4e2d8d28a16e90087a7fcc71c302ebd95833e8fc
Diffstat (limited to 'apps')
-rw-r--r--apps/slice_selection/optimizers/conductor/remote_opt_processor.py2
-rw-r--r--apps/slice_selection/optimizers/conductor/response_processor.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/slice_selection/optimizers/conductor/remote_opt_processor.py b/apps/slice_selection/optimizers/conductor/remote_opt_processor.py
index 432655b..0fbf36e 100644
--- a/apps/slice_selection/optimizers/conductor/remote_opt_processor.py
+++ b/apps/slice_selection/optimizers/conductor/remote_opt_processor.py
@@ -114,7 +114,7 @@ class SliceSelectionOptimizer(Thread):
subnet_capabilities = self.request_json.get('subnetCapabilities')
if subnet_capabilities:
for subnet_capability in subnet_capabilities:
- domain_type = f"{subnet_capability['domainType'].lower().replace('-', '_')}_"
+ domain_type = f"{subnet_capability['domainType']}_"
capability_details = subnet_capability['capabilityDetails']
for key, value in capability_details.items():
request_params[f"{domain_type}{camel_to_snake[key]}"] = value
diff --git a/apps/slice_selection/optimizers/conductor/response_processor.py b/apps/slice_selection/optimizers/conductor/response_processor.py
index 71a350f..d2c949b 100644
--- a/apps/slice_selection/optimizers/conductor/response_processor.py
+++ b/apps/slice_selection/optimizers/conductor/response_processor.py
@@ -67,7 +67,7 @@ class ResponseProcessor(object):
return {
'existingNSI': False,
'newNSISolution': {
- 'slice_profiles': self.get_slice_profiles_from_candidate(candidate, subnets)
+ 'sliceProfiles': self.get_slice_profiles_from_candidate(candidate, subnets)
}
}