summaryrefslogtreecommitdiffstats
path: root/components/pm-subscription-handler/pmsh_service/mod/aai_client.py
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2021-10-05 13:59:14 +0000
committerGerrit Code Review <gerrit@onap.org>2021-10-05 13:59:14 +0000
commit37d218575d0cc1d99a3edaa0605450480b357d79 (patch)
treea4b29267d484e7040b0f9f3ecd08f3e1c42b8303 /components/pm-subscription-handler/pmsh_service/mod/aai_client.py
parent6cd9e48a5ff13b187701a6c8ddb62ff4ba5d0c6e (diff)
parent053579b1a3a9d71fdc8fde5ed67600b453de083c (diff)
Merge "[DCAEGEN2] PMSH AppConfig Update"
Diffstat (limited to 'components/pm-subscription-handler/pmsh_service/mod/aai_client.py')
-rwxr-xr-xcomponents/pm-subscription-handler/pmsh_service/mod/aai_client.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/components/pm-subscription-handler/pmsh_service/mod/aai_client.py b/components/pm-subscription-handler/pmsh_service/mod/aai_client.py
index e53ea3a2..39adba46 100755
--- a/components/pm-subscription-handler/pmsh_service/mod/aai_client.py
+++ b/components/pm-subscription-handler/pmsh_service/mod/aai_client.py
@@ -1,5 +1,5 @@
# ============LICENSE_START===================================================
-# Copyright (C) 2019-2020 Nordix Foundation.
+# Copyright (C) 2019-2021 Nordix Foundation.
# ============================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -74,7 +74,8 @@ def _get_all_aai_nf_data(app_conf):
app_conf.aaf_creds.get('aaf_pass')),
data=data, params=params,
verify=(app_conf.ca_cert_path if app_conf.enable_tls else False),
- cert=(app_conf.cert_params if app_conf.enable_tls else None))
+ cert=((app_conf.cert_path,
+ app_conf.key_path) if app_conf.enable_tls else None))
response.raise_for_status()
if response.ok:
nf_data = json.loads(response.text)
@@ -177,7 +178,8 @@ def get_aai_model_data(app_conf, model_invariant_id, model_version_id, nf_name):
auth=HTTPBasicAuth(app_conf.aaf_creds.get('aaf_id'),
app_conf.aaf_creds.get('aaf_pass')),
verify=(app_conf.ca_cert_path if app_conf.enable_tls else False),
- cert=(app_conf.cert_params if app_conf.enable_tls else None))
+ cert=((app_conf.cert_path,
+ app_conf.key_path) if app_conf.enable_tls else None))
response.raise_for_status()
if response.ok:
data = json.loads(response.text)