aboutsummaryrefslogtreecommitdiffstats
path: root/osdf/adapters
diff options
context:
space:
mode:
authorkrishnaa96 <krishna.moorthy6@wipro.com>2021-07-14 12:23:17 +0530
committerkrishnaa96 <krishna.moorthy6@wipro.com>2021-07-14 13:15:59 +0530
commit555e5727d1c818108ff255a1b9fe4542b768ad5c (patch)
treeeb259474ebe99a36b4c435ff32be65018aa10435 /osdf/adapters
parentcdf57b8d8bb5b340de33110631f24f472d4da9ae (diff)
Fix issues in Slice selection
Issue-ID: OPTFRA-983 Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com> Change-Id: I0dc22bc4bc65853b6693b603554e4dc99717d176
Diffstat (limited to 'osdf/adapters')
-rw-r--r--osdf/adapters/conductor/conductor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdf/adapters/conductor/conductor.py b/osdf/adapters/conductor/conductor.py
index 6749c2c..49c123d 100644
--- a/osdf/adapters/conductor/conductor.py
+++ b/osdf/adapters/conductor/conductor.py
@@ -71,7 +71,7 @@ def request(req_info, demands, request_parameters, service_info, template_fields
if resp["plans"][0].get("status") in ["error"]:
raise RequestException(response=raw_resp, request=raw_resp.request)
- if resp["plans"][0].get("status") in ["done", "not found"]:
+ if resp["plans"][0].get("status") in ["done", "not found", "solved"]:
return resp
new_url = resp['plans'][0]['links'][0][0]['href'] # TODO(krishna): check why a list of lists