summaryrefslogtreecommitdiffstats
path: root/oti/event-handler/otihandler/cfy_client.py
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2020-03-05 05:41:53 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-05 05:41:53 +0000
commit2b2aa9977411519081fcab8ce4d1c37d3d9ee1d4 (patch)
tree635bdc444eb2f8452545d387f46f9bcf7926d602 /oti/event-handler/otihandler/cfy_client.py
parentff35e66284400a0d65302b77374826faebd54925 (diff)
parent2f2980df45d2d08c7a48c4a744bd893828f725f9 (diff)
Merge "Initial unit test coverage"
Diffstat (limited to 'oti/event-handler/otihandler/cfy_client.py')
-rw-r--r--oti/event-handler/otihandler/cfy_client.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/oti/event-handler/otihandler/cfy_client.py b/oti/event-handler/otihandler/cfy_client.py
index c823340..4e3de87 100644
--- a/oti/event-handler/otihandler/cfy_client.py
+++ b/oti/event-handler/otihandler/cfy_client.py
@@ -168,7 +168,7 @@ class CfyClient(object):
if not password:
raise CfyClientConsulError("{} value is missing 'cloudify.password'".format(source))
- b64_encoded_str = base64.b64encode(bytes("{}:{}".format(username, password), 'utf-8')).decode("utf-8")
+ b64_encoded_str = base64.b64encode(bytes("{}:{}".format(username, password), "utf-8")).decode("utf-8")
headers = {'Authorization': 'Basic ' + b64_encoded_str.rstrip('\n')}
#headers = {'Authorization': 'Basic ' + '{}:{}'.format(username, password).encode("base64").rstrip('\n')}
@@ -416,8 +416,8 @@ class CfyClient(object):
continue
# Check if the collector supports this VNF Type
- # scn:dti Consul key is authoritative for vnfTypes that a collector supports (not docker_config)
- dti_key = scn + ':dti'
+ # scn:oti Consul key is authoritative for vnfTypes that a collector supports (not docker_config)
+ dti_key = scn + ':oti'
try:
obj = ConsulClient.get_value(dti_key)
except Exception as e:
@@ -531,8 +531,8 @@ class CfyClient(object):
continue
# Check if the collector supports this VNF Type
- # scn:dti Consul key is authoritative for vnfTypes that a collector supports (not docker_config)
- dti_key = scn + ':dti'
+ # scn:oti Consul key is authoritative for vnfTypes that a collector supports (not docker_config)
+ dti_key = scn + ':oti'
try:
obj = ConsulClient.get_value(dti_key)
except Exception as e: