aboutsummaryrefslogtreecommitdiffstats
path: root/osdf/optimizers/placementopt/conductor/conductor.py
diff options
context:
space:
mode:
authorAnkitkumar Patel <ankit@research.att.com>2018-05-22 22:57:54 -0400
committerAnkitkumar Patel <ankit@research.att.com>2018-05-22 22:58:57 -0400
commit61960d0ca9556843596975506fc949ae90ebb776 (patch)
tree9e638df2ab0e4ac5677655815336f71b3eb397a1 /osdf/optimizers/placementopt/conductor/conductor.py
parent8a0fb1ecc1bd4f421f18ad10edd8e6f2c78dc003 (diff)
Eliminating emply elements from HAS templatev1.1.1
Eliminating empty elements from HAS template Issue-ID: OPTFRA-243 Change-Id: Iec6acf95f6f0a98757e3d208f102998d197b2daa Signed-off-by: Ankitkumar Patel <ankit@research.att.com>
Diffstat (limited to 'osdf/optimizers/placementopt/conductor/conductor.py')
-rw-r--r--osdf/optimizers/placementopt/conductor/conductor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/osdf/optimizers/placementopt/conductor/conductor.py b/osdf/optimizers/placementopt/conductor/conductor.py
index 49e7bfc..c872e5a 100644
--- a/osdf/optimizers/placementopt/conductor/conductor.py
+++ b/osdf/optimizers/placementopt/conductor/conductor.py
@@ -106,7 +106,7 @@ def initial_request_to_conductor(rc, conductor_url, conductor_req_json):
raise RequestException(response=raw_resp, request=raw_resp.request)
time.sleep(10) # 10 seconds wait time to avoid being too quick!
plan_url = resp["links"][0][0]["href"]
- debug_log.debug("Attemping to read the plan from the conductor provided url {}".format(plan_url))
+ debug_log.debug("Attempting to read the plan from the conductor provided url {}".format(plan_url))
raw_resp = rc.request(raw_response=True, url=plan_url) # TODO: check why a list of lists for links
resp = raw_resp.json()